diff --git a/skais/tests/ais/test_ais_trajectory.py b/skais/tests/ais/test_ais_trajectory.py
index d8db97fd3534c0033608664b1833450642507076..1ee2d6d860dd0a5a9938f9fc61762eb3b4320963 100644
--- a/skais/tests/ais/test_ais_trajectory.py
+++ b/skais/tests/ais/test_ais_trajectory.py
@@ -320,21 +320,3 @@ class TestAISTrajectory(unittest.TestCase):
 
     def test_apply_func_on_window(self):
         self.assertRaises(ValueError, apply_func_on_window,np.arange(10), 0, 0, 'not valid string')
-
-    def test_shift_trajectory_to_coordinates_no_change(self):
-        trajectory = AISTrajectory(
-            pd.DataFrame(
-                {
-                    "latitude": [0, 90, 0, -90],
-                    "longitude": [0, 90, 180, -90],
-                    "ts_sec": [i for i in range(4)]
-                }
-            )
-        )
-
-        result = trajectory.shift_trajectory_to_coordinates(point_index=0)
-
-        pd.testing.assert_frame_equal(trajectory.df.reset_index(drop=True), result.df.reset_index(drop=True))
-
-    def test_shift_trajectory_to_coordinates_change_1(self):
-        self.assertTrue(True)
\ No newline at end of file