From f07ef5782576fa194f4e2ea37b6ecf59cdbe78a5 Mon Sep 17 00:00:00 2001 From: Divyank Shah Date: Sat, 5 Nov 2022 11:41:49 -0700 Subject: [PATCH] make a test pr --- factorial.py | 2 +- test_factorial.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/factorial.py b/factorial.py index e806a8e..6309f57 100644 --- a/factorial.py +++ b/factorial.py @@ -4,4 +4,4 @@ def factorial(n): output = 0 for i in range(n): output *= i - return output \ No newline at end of file + return output diff --git a/test_factorial.py b/test_factorial.py index ecc97d1..813ee19 100644 --- a/test_factorial.py +++ b/test_factorial.py @@ -5,11 +5,11 @@ from factorial import factorial -def test_factorial(): +def test_factorial_6(): assert 6 == factorial(3) -def test_factorial(): +def test_factorial_4(): assert 24 == factorial(4) -def test_factorial(): +def test_factorial_5(): assert 120 == factorial(5) \ No newline at end of file