diff options
| author | 2015-03-18 22:00:50 -0400 | |
|---|---|---|
| committer | 2015-03-18 22:00:50 -0400 | |
| commit | 966011eda8f20e591708e687be7207c2defa6b70 (patch) | |
| tree | 3f82adbd20cf51de9969f431b89d2200eab6ce3f | |
| parent | added full rename support for classes buried in generic signatures (diff) | |
| download | enigma-966011eda8f20e591708e687be7207c2defa6b70.tar.gz enigma-966011eda8f20e591708e687be7207c2defa6b70.tar.xz enigma-966011eda8f20e591708e687be7207c2defa6b70.zip | |
fix broken test
we're not implementing generic parsing anymore
| -rw-r--r-- | test/cuchaz/enigma/TestSignature.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/cuchaz/enigma/TestSignature.java b/test/cuchaz/enigma/TestSignature.java index 183a4fd4..649b76dd 100644 --- a/test/cuchaz/enigma/TestSignature.java +++ b/test/cuchaz/enigma/TestSignature.java | |||
| @@ -71,14 +71,6 @@ public class TestSignature { | |||
| 71 | )); | 71 | )); |
| 72 | assertThat(sig.getReturnType(), is(new Type("LBar;"))); | 72 | assertThat(sig.getReturnType(), is(new Type("LBar;"))); |
| 73 | } | 73 | } |
| 74 | { | ||
| 75 | final Signature sig = new Signature("(LFoo<LParm;>;LMoo<LParm;>;)LBar<LParm;>;"); | ||
| 76 | assertThat(sig.getArgumentTypes(), contains( | ||
| 77 | new Type("LFoo<LParm;>;"), | ||
| 78 | new Type("LMoo<LParm;>;") | ||
| 79 | )); | ||
| 80 | assertThat(sig.getReturnType(), is(new Type("LBar<LParm;>;"))); | ||
| 81 | } | ||
| 82 | } | 74 | } |
| 83 | 75 | ||
| 84 | @Test | 76 | @Test |