Skip to content

Commit 5dbf249

Browse files
committed
Move delim and quote to the right spot in tests
1 parent ef4cf56 commit 5dbf249

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

multinet/api/tests/test_upload_csv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ def local_csv_upload(path: pathlib.Path, workspace, user) -> Upload:
3232
user=user,
3333
blob=file,
3434
data_type=Upload.DataType.CSV,
35-
delimiter=",",
36-
quotechar="\"",
3735
)
3836

3937

@@ -63,6 +61,8 @@ def airports_csv(
6361
'timezone': 'number',
6462
'year built': 'number',
6563
},
64+
'delimiter': ',',
65+
'quotechar': '\"',
6666
},
6767
format='json',
6868
)

0 commit comments

Comments
 (0)