Skip to content

Commit

Permalink
tests: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Apr 20, 2024
1 parent dee0296 commit 545d28d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_rtdc_export_tsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_tsv_export_ds_metadata(tmp_path):

ds.export.tsv(f1, ["area_um", "bright_avg"], override=True)

lines = f1.read_text().split("\n")
lines = f1.read_text(encoding="utf-8").split("\n")

for ll in [
"# dc:experiment:date = 2020-10-23",
Expand Down

0 comments on commit 545d28d

Please sign in to comment.