aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/pathod/test_language_actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pathod/test_language_actions.py b/test/pathod/test_language_actions.py
index c8721a03..2d870336 100644
--- a/test/pathod/test_language_actions.py
+++ b/test/pathod/test_language_actions.py
@@ -53,7 +53,7 @@ class TestInject:
def test_at(self):
e = actions.InjectAt.expr()
v = e.parseString("i0,'foo'")[0]
- assert v.value.val == "foo"
+ assert v.value.val == b"foo"
assert v.offset == 0
assert isinstance(v, actions.InjectAt)