Skip to content

Commit f0bdaf4

Browse files
committed
drop dupe tests
1 parent 3e347b1 commit f0bdaf4

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
@@ -261,25 +261,3 @@ L0:
261261
r0 = b'_'
262262
r1 = CPyBytes_Ljust(b, 20, r0)
263263
return r1
264-
265-
[case testBytesRjustNoPad]
266-
def f(b: bytes) -> bytes:
267-
return b.rjust(2)
268-
[out]
269-
def f(b):
270-
b :: bytes
271-
r0 :: bytes
272-
L0:
273-
r0 = b.rjust(2, b' ')
274-
return r0
275-
276-
[case testBytesLjustNoPad]
277-
def f(b: bytes) -> bytes:
278-
return b.ljust(1)
279-
[out]
280-
def f(b):
281-
b :: bytes
282-
r0 :: bytes
283-
L0:
284-
r0 = b.ljust(1, b' ')
285-
return r0

0 commit comments

Comments
 (0)