From 319e056bbf80479c3efb12e4407db88f618cdd46 Mon Sep 17 00:00:00 2001 From: AuHau Date: Mon, 6 Aug 2018 19:30:14 -0700 Subject: [PATCH] Ohhhh ok, flakes now... --- tests/unit/test_question.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/test_question.py b/tests/unit/test_question.py index 49e45811..22646b3b 100644 --- a/tests/unit/test_question.py +++ b/tests/unit/test_question.py @@ -243,7 +243,8 @@ def do_test(path, result=True): do_test('{}/{}'.format('a'*255, 'b'*255), True) # Path component must not contains null bytes - do_test('some/path/with/{}byte'.format(b'\x00'.decode('utf-8')), False) + do_test('some/path/with/{}byte'.format(b'\x00'.decode('utf-8')), + False) def test_path_type_validation_no_existence_check(self): def do_test(path_type, path, result=True):