diff --git a/tests/linmath/test_lvector2.py b/tests/linmath/test_lvector2.py index d955fe8d8e..1bb17aee7e 100644 --- a/tests/linmath/test_lvector2.py +++ b/tests/linmath/test_lvector2.py @@ -129,8 +129,8 @@ def test_vec2_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 31f1ff5fe8..44fc17e015 100644 --- a/tests/linmath/test_lvector3.py +++ b/tests/linmath/test_lvector3.py @@ -114,8 +114,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 7cf375589e..3fd283e2d3 100644 --- a/tests/linmath/test_lvector4.py +++ b/tests/linmath/test_lvector4.py @@ -130,8 +130,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