Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SandyRogers committed Jan 22, 2024
1 parent 4fd2f3d commit de3b415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api/test_study.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def test_csv(self, client, studies):
assert response.get('Content-Disposition') == 'attachment; filename="Study.csv"'
content = b''.join(response.streaming_content).decode('utf-8')

expected_header = [
expected_header = ",".join([
"\"accession\"",
"\"analyses\"",
"\"bioproject\"",
Expand All @@ -93,7 +93,7 @@ def test_csv(self, client, studies):
"\"study_abstract\"",
"\"study_name\"",
"\"url\""
]
])
first_row = [
"MGYS00000001",
"",
Expand Down

0 comments on commit de3b415

Please sign in to comment.