Commit 0c5a83c0 authored by Skylot's avatar Skylot

style: fix code style in test

parent 12bb6323
...@@ -2,12 +2,12 @@ package jadx.core.dex.instructions.args; ...@@ -2,12 +2,12 @@ package jadx.core.dex.instructions.args;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*; import static org.junit.jupiter.api.Assertions.assertEquals;
class ArgTypeTest { class ArgTypeTest {
@Test @Test
void testEqualsOfGenericTypes() { public void testEqualsOfGenericTypes() {
ArgType first = ArgType.generic("java.lang.List", ArgType.STRING); ArgType first = ArgType.generic("java.lang.List", ArgType.STRING);
ArgType second = ArgType.generic("Ljava/lang/List;", ArgType.STRING); ArgType second = ArgType.generic("Ljava/lang/List;", ArgType.STRING);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment