Skip to content

Commit

Permalink
Update failing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldavis-wf committed Jan 13, 2020
1 parent db77aca commit 4ebd185
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void convertVarName() throws Exception {
Assert.assertEquals(fakeJavaCodegen.toVarName("user-name"), "userName");
Assert.assertEquals(fakeJavaCodegen.toVarName("user_name"), "userName");
Assert.assertEquals(fakeJavaCodegen.toVarName("_user_name"), "_userName");
Assert.assertEquals(fakeJavaCodegen.toVarName("@user_name"), "userName");
Assert.assertEquals(fakeJavaCodegen.toVarName(":user_name"), "userName");
}

@Test
Expand Down

0 comments on commit 4ebd185

Please sign in to comment.