Skip to content

Commit aff1f14

Browse files
committed
remove obsoleted and wrong tests
1 parent 70edd89 commit aff1f14

File tree

1 file changed

+0
-12
lines changed
  • graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/datatype

1 file changed

+0
-12
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/datatype/StringTests.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -88,18 +88,6 @@ public void stringRSplitNoLimit() {
8888
assertPrints("['a', 'b', 'c']\n", source);
8989
}
9090

91-
@Test
92-
public void stringRSplitLimit() {
93-
String source = "print(' a b c '.rsplit(None, 1))\n";
94-
assertPrints("['a b', 'c']\n", source);
95-
}
96-
97-
@Test
98-
public void stringRSplitSep() {
99-
String source = "print('----a---b--c-'.rsplit('-'))\n";
100-
assertPrints("['', '', '', '', 'a', '', '', 'b', '', 'c']\n", source);
101-
}
102-
10391
@Test
10492
public void stringRSplitSepLimit() {
10593
String source = "print('----a---b--c-'.rsplit('-', 5))\n";

0 commit comments

Comments
 (0)