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

refactor: unify syntax of asserts in tests (Assert.assert* -> assert*) #2604

Merged
merged 13 commits into from
Oct 2, 2018
Prev Previous commit
Next Next commit
refactor: remove 'Assert' prefix
  • Loading branch information
zielint0 committed Oct 1, 2018
commit af911e1e791d5ec2e4ee8b3dcac99295f2ada80b
2 changes: 1 addition & 1 deletion src/test/java/spoon/test/compilation/CompilationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void compileTest() throws Exception {

Class<?> aClass = urlClassLoader.loadClass("Simple");
Method m = aClass.getMethod("m");
Assert.assertEquals(42, m.invoke(aClass.newInstance()));
assertEquals(42, m.invoke(aClass.newInstance()));
}

@Test
Expand Down