diff options
| author | 2014-10-01 00:21:29 -0400 | |
|---|---|---|
| committer | 2014-10-01 00:21:29 -0400 | |
| commit | 056f388494337a0f3cec10fab8e207017757bf6d (patch) | |
| tree | 9d286169443083430c082884dc7fa80920dfec73 /test | |
| parent | fixed inner class renaming bug (diff) | |
| download | enigma-fork-056f388494337a0f3cec10fab8e207017757bf6d.tar.gz enigma-fork-056f388494337a0f3cec10fab8e207017757bf6d.tar.xz enigma-fork-056f388494337a0f3cec10fab8e207017757bf6d.zip | |
fix inner classes test
Diffstat (limited to 'test')
| -rw-r--r-- | test/cuchaz/enigma/TestInnerClasses.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cuchaz/enigma/TestInnerClasses.java b/test/cuchaz/enigma/TestInnerClasses.java index e555d92..a7ee0b6 100644 --- a/test/cuchaz/enigma/TestInnerClasses.java +++ b/test/cuchaz/enigma/TestInnerClasses.java | |||
| @@ -25,13 +25,13 @@ public class TestInnerClasses | |||
| 25 | private JarIndex m_index; | 25 | private JarIndex m_index; |
| 26 | 26 | ||
| 27 | private static final String AnonymousOuter = "none/a"; | 27 | private static final String AnonymousOuter = "none/a"; |
| 28 | private static final String AnonymousInner = "none/b"; | 28 | private static final String AnonymousInner = "b"; |
| 29 | private static final String SimpleOuter = "none/g"; | 29 | private static final String SimpleOuter = "none/g"; |
| 30 | private static final String SimpleInner = "none/h"; | 30 | private static final String SimpleInner = "h"; |
| 31 | private static final String ConstructorArgsOuter = "none/e"; | 31 | private static final String ConstructorArgsOuter = "none/e"; |
| 32 | private static final String ConstructorArgsInner = "none/f"; | 32 | private static final String ConstructorArgsInner = "f"; |
| 33 | private static final String AnonymousWithScopeArgsOuter = "none/c"; | 33 | private static final String AnonymousWithScopeArgsOuter = "none/c"; |
| 34 | private static final String AnonymousWithScopeArgsInner = "none/d"; | 34 | private static final String AnonymousWithScopeArgsInner = "d"; |
| 35 | 35 | ||
| 36 | public TestInnerClasses( ) | 36 | public TestInnerClasses( ) |
| 37 | throws Exception | 37 | throws Exception |