Skip to content

Commit 9380ae2

Browse files
committed
drop dupe tests
1 parent 9bb169c commit 9380ae2

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

mypyc/test-data/irbuild-bytes.test

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -229,25 +229,3 @@ L0:
229229
r0 = b'_'
230230
r1 = CPyBytes_Ljust(b, 20, r0)
231231
return r1
232-
233-
[case testBytesRjustNoPad]
234-
def f(b: bytes) -> bytes:
235-
return b.rjust(2)
236-
[out]
237-
def f(b):
238-
b :: bytes
239-
r0 :: bytes
240-
L0:
241-
r0 = b.rjust(2, b' ')
242-
return r0
243-
244-
[case testBytesLjustNoPad]
245-
def f(b: bytes) -> bytes:
246-
return b.ljust(1)
247-
[out]
248-
def f(b):
249-
b :: bytes
250-
r0 :: bytes
251-
L0:
252-
r0 = b.ljust(1, b' ')
253-
return r0

0 commit comments

Comments
 (0)