Skip to content

Commit

Permalink
[test] resolve test compilation issue + remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
kares committed Jul 7, 2018
1 parent 520e2a7 commit 1f416e1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/src/test/java/org/jruby/test/MainTestSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public static Test suite() throws Throwable {
suite.addTestSuite(TestRubyCollect.class);
suite.addTestSuite(TestRubyException.class);
suite.addTestSuite(TestRubyFixnum.class);
suite.addTestSuite(TestRubyFloat.class);
suite.addTestSuite(TestRubyHash.class);
suite.addTestSuite(TestRubyObject.class);
suite.addTestSuite(TestRubyRational.class);
Expand Down
2 changes: 0 additions & 2 deletions core/src/test/java/org/jruby/test/TestRubyFixnum.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ public void testZero() {
num = RubyFixnum.zero(runtime);
assertEquals(runtime.newFixnum(0), num);
assertEquals(0, num.getLongValue());

System.out.println("ZEROO\n\n");
}

@Test
Expand Down

0 comments on commit 1f416e1

Please sign in to comment.