diff --git a/src/tinySelf/shared/arrays.py b/src/tinySelf/shared/two_pointer_array.py similarity index 100% rename from src/tinySelf/shared/arrays.py rename to src/tinySelf/shared/two_pointer_array.py diff --git a/tests/shared/test_array.py b/tests/shared/test_two_pointer_array.py similarity index 96% rename from tests/shared/test_array.py rename to tests/shared/test_two_pointer_array.py index d00948c..e95157d 100644 --- a/tests/shared/test_array.py +++ b/tests/shared/test_two_pointer_array.py @@ -2,7 +2,7 @@ from pytest import raises from pytest import fixture -from tinySelf.shared.arrays import TwoPointerArray +from tinySelf.shared.two_pointer_array import TwoPointerArray @fixture