that was silly

This commit is contained in:
Jean-Paul Calderone 2021-01-11 11:13:45 -05:00
parent a0aa3fe296
commit 08d56c87b4

View File

@ -60,7 +60,6 @@ from hypothesis import (
from hypothesis.strategies import ( from hypothesis.strategies import (
lists, lists,
tuples,
text, text,
characters, characters,
) )
@ -175,7 +174,7 @@ class UnicodeOutputTests(SyncTestCase):
""" """
Tests for writing unicode to stdout and stderr. Tests for writing unicode to stdout and stderr.
""" """
@given(tuples(characters(), characters())) @given(characters(), characters())
def test_write_non_ascii(self, stdout_char, stderr_char): def test_write_non_ascii(self, stdout_char, stderr_char):
""" """
Non-ASCII unicode characters can be written to stdout and stderr with Non-ASCII unicode characters can be written to stdout and stderr with