Skip to content

Commit

Permalink
Fix import statements in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
omersahintas committed Sep 8, 2021
1 parent 37a78e5 commit 7f1b928
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion p3iv_types/test/test_environment_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import unittest
import numpy as np
from p3iv_types.environment_model import EnvironmentModel
from p3iv_types.motion_state import MotionState
from p3iv_types.motion import MotionState


class TestEnvironmentModel(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion p3iv_types/test/test_motion_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import unittest
import numpy as np
from p3iv_types.motion_state import MotionState, MotionStateArray
from p3iv_types.motion import MotionState, MotionStateArray


class MotionStateTest(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion p3iv_types/test/test_py_motion_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import unittest
import numpy as np
from p3iv_types.py_motion import PyMotionState, PyMotionStateArray
from p3iv_types.py_motion_state import PyMotionState, PyMotionStateArray


class PyMotionStateTest(unittest.TestCase):
Expand Down

0 comments on commit 7f1b928

Please sign in to comment.