Skip to content

Commit e181218

Browse files
authored
[DP-335] remove test case checking global key sanitization (#1367)
1 parent 788d0ef commit e181218

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/integration/test_global_keys.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,6 @@ def test_assign_same_global_keys_to_data_rows(client, dataset, image_url):
7979
'error'] == "Invalid assignment. Either DataRow does not exist, or globalKey is invalid"
8080

8181

82-
def test_global_key_sanitization(dataset, image_url):
83-
uuid_str = str(uuid.uuid4())
84-
unsanitized_global_key = "\"<>\\{\\}\\|" + uuid_str
85-
sanitized_global_key = "_________" + uuid_str
86-
dr = dataset.create_data_row(row_data=image_url,
87-
global_key=unsanitized_global_key)
88-
assert dr.global_key == sanitized_global_key
89-
90-
9182
def test_long_global_key_validation(client, dataset, image_url):
9283
long_global_key = 'x' * 201
9384
dr_1 = dataset.create_data_row(row_data=image_url)

0 commit comments

Comments
 (0)