Fix the test count for ClassLoader's test.

main
KKlochko 2 years ago
parent ba9ce975c8
commit c00320e295

@ -22,7 +22,7 @@ class IntegratedClassLoader extends Specification {
def classes = loader.load() def classes = loader.load()
then: "Checking that the test result is expected" then: "Checking that the test result is expected"
5 == classes.size() 11 == classes.size()
} }
def "The classes must be represent the Test interface."() { def "The classes must be represent the Test interface."() {

@ -19,7 +19,7 @@ class IntegratedNameClassLoader extends Specification {
def classNames = loader.load() def classNames = loader.load()
then: "Checking that the test result is expected" then: "Checking that the test result is expected"
5 == classNames.size() 11 == classNames.size()
} }
} }

Loading…
Cancel
Save