From a042a70cc70eee992bae28ac8b9558a057dca507 Mon Sep 17 00:00:00 2001 From: Fabio Date: Tue, 5 May 2020 16:16:49 +0200 Subject: [PATCH 1/2] Update test_utils.py --- test_utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test_utils.py b/test_utils.py index 1ec3877..fd3c0d3 100644 --- a/test_utils.py +++ b/test_utils.py @@ -2,3 +2,6 @@ def test_funny(): assert funny(2, 1) == 3 + +def test_funny_2(): + assert funny(2, 'a') == 3 From 80f424d82efbbd91fc39f65acb7039eb39233a9d Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Tue, 5 May 2020 14:22:52 +0000 Subject: [PATCH 2/2] Fixing style errors. --- test_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_utils.py b/test_utils.py index fd3c0d3..cc8cdd1 100644 --- a/test_utils.py +++ b/test_utils.py @@ -1,7 +1,9 @@ from utils import funny + def test_funny(): assert funny(2, 1) == 3 + def test_funny_2(): assert funny(2, 'a') == 3