diff --git a/tests/linmath/test_lvector2.py b/tests/linmath/test_lvector2.py index 42b8c5db48..a51631fd8d 100644 --- a/tests/linmath/test_lvector2.py +++ b/tests/linmath/test_lvector2.py @@ -125,8 +125,8 @@ def test_vec4_floordiv(type): with pytest.raises(ZeroDivisionError): type(1, 2) // 0 - for i in range(-100, 100): - for j in range(1, 100): + for i in range(-11, 11): + for j in range(1, 11): assert (type(i) // j).x == i // j assert (type(i) // -j).x == i // -j diff --git a/tests/linmath/test_lvector3.py b/tests/linmath/test_lvector3.py index 1fac580965..22636cc2d6 100644 --- a/tests/linmath/test_lvector3.py +++ b/tests/linmath/test_lvector3.py @@ -110,8 +110,8 @@ def test_vec3_floordiv(type): with pytest.raises(ZeroDivisionError): type(1, 2, 3) // 0 - for i in range(-100, 100): - for j in range(1, 100): + for i in range(-11, 11): + for j in range(1, 11): assert (type(i) // j).x == i // j assert (type(i) // -j).x == i // -j diff --git a/tests/linmath/test_lvector4.py b/tests/linmath/test_lvector4.py index 63c6f58155..03355eb2c6 100644 --- a/tests/linmath/test_lvector4.py +++ b/tests/linmath/test_lvector4.py @@ -126,8 +126,8 @@ def test_vec4_floordiv(type): with pytest.raises(ZeroDivisionError): type(1, 2, 3, 4) // 0 - for i in range(-100, 100): - for j in range(1, 100): + for i in range(-11, 11): + for j in range(1, 11): assert (type(i) // j).x == i // j assert (type(i) // -j).x == i // -j