From 053745501f5d4c0159be03916b5a5b38c6931323 Mon Sep 17 00:00:00 2001 From: TanyaAgarwal28 <8979149361t@gmail.com> Date: Sun, 8 Oct 2023 19:23:53 +0530 Subject: [PATCH] Bug Fix 11456: Duplicated parameters in @pytest.mark.parametrize --- testing/test_python.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 testing/test_python.py diff --git a/testing/test_python.py b/testing/test_python.py deleted file mode 100644 index ca5532702..000000000 --- a/testing/test_python.py +++ /dev/null @@ -1,13 +0,0 @@ -import pytest - - -@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11, 2_1]) -def test_params(a): - print("a:", a) - assert a > 0 - - -@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11]) -def test_params_1(a): - print("a:", a) - assert a > 0