From da4bb9b667910183cf149ff0365ff625527c0368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B5=A9=E7=80=9A=E7=8C=AB?= Date: Tue, 9 Jan 2024 17:22:06 +0900 Subject: [PATCH] fix github workflow pytest error --- tests/test_jsonfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_jsonfile.py b/tests/test_jsonfile.py index 0511fbf..ef8caa5 100644 --- a/tests/test_jsonfile.py +++ b/tests/test_jsonfile.py @@ -110,4 +110,4 @@ def test_show_geojson_fields(capfd): out, err = capfd.readouterr() - assert out.replace(' ', '') == geojson_table_preview.replace(' ', '') \ No newline at end of file + assert out.replace(' ', '').replace('-','') == geojson_table_preview.replace(' ', '').replace('-','') \ No newline at end of file