diff --git a/tests/test_utilities/test_csvformat.py b/tests/test_utilities/test_csvformat.py index 1983b2f8..99042d1c 100644 --- a/tests/test_utilities/test_csvformat.py +++ b/tests/test_utilities/test_csvformat.py @@ -59,12 +59,12 @@ def test_asv(self): ], newline_at_eof=False) def test_quotechar(self): - input_file = io.BytesIO(b'a,b,c\n1*2,3,4\n') + input_file = io.BytesIO(b'a,b,c\n1#2,3,4\n') with stdin_as_string(input_file): - self.assertLines(['-Q', '*'], [ + self.assertLines(['-Q', '#'], [ 'a,b,c', - '*1**2*,3,4', + '#1##2#,3,4', ]) input_file.close() @@ -157,12 +157,12 @@ def test_asv(self): ], newline_at_eof=False) def test_quotechar(self): - input_file = io.BytesIO(b'a,b,c\n1*2,3,4\n') + input_file = io.BytesIO(b'a,b,c\n1#2,3,4\n') with stdin_as_string(input_file): - self.assertLines(['-U', '2', '-Q', '*'], [ - '*a*,*b*,*c*', - '*1**2*,3,4', + self.assertLines(['-U', '2', '-Q', '#'], [ + '#a#,#b#,#c#', + '#1##2#,3,4', ]) input_file.close()