File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
src/main/java/org/thepalaceproject/ait Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static AppiumTestContext createForTestInfo(
3535 throws Exception
3636 {
3737 return create (
38- AppiumTestContext .createTestName (testInfo , device ),
38+ AppiumTestContext .createTestName (testInfo ),
3939 device
4040 );
4141 }
@@ -137,8 +137,7 @@ private static AppiumTestContext createForLocal(
137137 }
138138
139139 private static String createTestName (
140- final TestInfo testInfo ,
141- final AppiumDeviceConfiguration device )
140+ final TestInfo testInfo )
142141 {
143142 final var text = new StringBuilder ();
144143
@@ -152,12 +151,6 @@ private static String createTestName(
152151 text .append (method .getName ());
153152 text .append (' ' );
154153 });
155-
156- text .append ('(' );
157- text .append (device .deviceName ());
158- text .append (" " );
159- text .append (device .osVersion ());
160- text .append (')' );
161154 return text .toString ();
162155 }
163156
You can’t perform that action at this time.
0 commit comments