aboutsummaryrefslogtreecommitdiff
path: root/src/argaze.test
diff options
context:
space:
mode:
Diffstat (limited to 'src/argaze.test')
-rw-r--r--src/argaze.test/GazeFeatures.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/argaze.test/GazeFeatures.py b/src/argaze.test/GazeFeatures.py
index d6abd12..cbe6056 100644
--- a/src/argaze.test/GazeFeatures.py
+++ b/src/argaze.test/GazeFeatures.py
@@ -125,7 +125,7 @@ class TestUnvalidGazePositionClass(unittest.TestCase):
def test___repr__(self):
"""Test UnvalidGazePosition string representation."""
- self.assertEqual(repr(GazeFeatures.UnvalidGazePosition()), "{\"value\": [null, null], \"precision\": null}")
+ self.assertEqual(repr(GazeFeatures.UnvalidGazePosition()), "{\"message\": null, \"value\": [null, null], \"precision\": null}")
class TestTimeStampedGazePositionsClass(unittest.TestCase):
"""Test TimeStampedGazePositions class."""
@@ -176,7 +176,7 @@ class TestTimeStampedGazePositionsClass(unittest.TestCase):
ts_gaze_positions[0] = GazeFeatures.UnvalidGazePosition()
- self.assertEqual(repr(ts_gaze_positions), "{\"0\": {\"value\": [null, null], \"precision\": null}}")
+ self.assertEqual(repr(ts_gaze_positions), "{\"0\": {\"message\": null, \"value\": [null, null], \"precision\": null}}")
def test_as_dataframe(self):
"""Test inherited as_dataframe method."""