Skip to content

Commit

Permalink
2018.6.27 v1.0.14, modify fish_csv unittest #72
Browse files Browse the repository at this point in the history
  • Loading branch information
Chunying Jia committed Jun 27, 2018
1 parent 84d470f commit adf1e08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_csv.py
Expand Up @@ -15,7 +15,7 @@ def test_csv(self):
if not os.path.exists(os.path.dirname(csv_file_name)):
os.makedirs(os.path.dirname(csv_file_name))
csv_content = "a,b\n1,2"
with open(csv_file_name, 'w') as f:
with open(csv_file_name, 'w', encoding='utf8') as f:
f.write(csv_content)
f.close()
result = csv_file_to_list(csv_file_name)
Expand Down

0 comments on commit adf1e08

Please sign in to comment.