Skip to content

Commit

Permalink
Updated parameter to camel case.
Browse files Browse the repository at this point in the history
  • Loading branch information
gzhao9 committed Oct 17, 2023
1 parent d6bab02 commit 2c8b1ac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
public class MockTungstenAnswerFactory {

TungstenAnswer tungstenAnswer;
MockTungstenAnswerFactory(boolean Result){
MockTungstenAnswerFactory(boolean returnResult){
tungstenAnswer=mock(TungstenAnswer.class);
when(tungstenAnswer.getResult()).thenReturn(Result);
when(tungstenAnswer.getResult()).thenReturn(returnResult);
}
MockTungstenAnswerFactory(){
this(true);
Expand Down

0 comments on commit 2c8b1ac

Please sign in to comment.