Skip to content

Commit b19a262

Browse files
author
Lorena Mesa
committed
Fix linter issues in sample cases test
1 parent f91640e commit b19a262

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/sample_cases_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def redirect_stdout(new_out):
2525
class TestHappyPath(unittest.TestCase):
2626
def test_fails_to_create_identicon_with_input_text_missing(self):
2727
with self.assertRaises(subprocess.CalledProcessError) as context:
28-
error_received = subprocess.check_output(f'python3 {PROJECT_ROOT}/main.py', shell=True, stderr=subprocess.STDOUT).strip()
28+
subprocess.check_output(f'python3 {PROJECT_ROOT}/main.py', shell=True, stderr=subprocess.STDOUT).strip()
2929
self.assertIn(context.exception.message, "main.py: error: the following arguments are required: -s/--string")
3030

3131
def test_creates_identicon_when_input_text_provided(self):

0 commit comments

Comments
 (0)