Skip to content

Commit

Permalink
Correct variable reference in test
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 586464963
  • Loading branch information
kevinoconnor7 authored and copybara-github committed Nov 29, 2023
1 parent 213ce93 commit 11717aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private static void testNativeJsEnum() {
assertTrue(o.toString().equals(OK_STRING));
assertTrue(o.equals(NativeEnum.ACCEPT));
assertTrue(o.equals(OK_STRING));
assertTrue(v.equals(StringNativeEnum.OK));
assertTrue(o.equals(StringNativeEnum.OK));

assertFalse(v instanceof Enum);
assertTrue((Object) v instanceof String);
Expand Down

0 comments on commit 11717aa

Please sign in to comment.