From 6d0d7d73668e44e7a60187bcf738a73378469799 Mon Sep 17 00:00:00 2001 From: Bystroushaak Date: Tue, 8 Oct 2019 17:38:17 +0200 Subject: [PATCH] vm/shared/array.py renamed to vm/shared/two_pointer_array.py. --- src/tinySelf/shared/{arrays.py => two_pointer_array.py} | 0 tests/shared/{test_array.py => test_two_pointer_array.py} | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/tinySelf/shared/{arrays.py => two_pointer_array.py} (100%) rename tests/shared/{test_array.py => test_two_pointer_array.py} (96%) 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