fix build issue

This commit is contained in:
Sola
2016-05-22 16:44:00 +08:00
parent 402dc2985e
commit 715c285a91

View File

@@ -14,7 +14,7 @@ public class ReflectionTest {
public void test() { public void test() {
Reflections reflections = new Reflections(getClass().getPackage().getName()); Reflections reflections = new Reflections(getClass().getPackage().getName());
Set<Class<? extends API>> set = reflections.getSubTypesOf(API.class); Set<Class<? extends API>> set = reflections.getSubTypesOf(API.class);
assert set.size() == 14; assert set.size() == 15;
} }
} }