Skip to content

Commit

Permalink
Fix compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
khatchad committed Feb 29, 2024
1 parent 63ce779 commit 92ce45d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6516,13 +6516,13 @@ private static void testGPModelHelper(Set<Function> functions) throws Exception
@Test
public void testGPModel() throws Exception {
Set<Function> functions = this.getFunctions("test_A");
this.testGPModelHelper(functions);
testGPModelHelper(functions);
}

@Test
public void testGPModel2() throws Exception {
Set<Function> functions = this.getFunctions();
this.testGPModelHelper(functions);
testGPModelHelper(functions);
}

@Test
Expand Down

0 comments on commit 92ce45d

Please sign in to comment.