Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible Error in the Testing class #11

Open
gmendezm opened this issue Jul 28, 2015 · 0 comments
Open

Possible Error in the Testing class #11

gmendezm opened this issue Jul 28, 2015 · 0 comments

Comments

@gmendezm
Copy link

In this class: https://github.com/wtchoi/SwiftHand/tree/master/src/back-end/src/main/java/edu/berkeley/wtchoi/swift/testing

You have (lines 150-154):

protected void invokeObserverOnMainTestEnd(){
    for(TestingObserver<Request, Result, State> observer:observers){
        observer.onMainTestBegin();
    }
}

But should be

protected void invokeObserverOnMainTestEnd(){
    for(TestingObserver<Request, Result, State> observer:observers){
        observer.onMainTestEnd();
    }
}

Line 152 modified.

Finded by Alberto Tablada.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant