Skip to content

Commit 4803fd3

Browse files
committed
TEST: Update reference tests
1 parent 6709d51 commit 4803fd3

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

integration_tests/test_str_01.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ def test_str_split():
117117
def test_str_replace():
118118
x: str = "abc"
119119
a: str = "zzaaabracadabra"
120-
print(x.replace("", ","))
121120
print(a.replace("a",""))
122121
print(a.replace("",""))
123122
print(a.replace("a","b"))
@@ -139,6 +138,7 @@ def test_str_replace():
139138
print(a.replace("b","k",1))
140139
print(a.replace("b","k",2))
141140
print(a.replace("zza","yo",2))
141+
print(x.replace("", ","))
142142
assert a.replace("a","") == "zzbrcdbr"
143143
assert a.replace("","") == "zzaaabracadabra"
144144
assert a.replace("a","b") == "zzbbbbrbcbdbbrb"

tests/reference/tokens-test_literal-e20c024.stdout

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)