summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/python/template/asserts.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/python/template/asserts.py b/share/python/template/asserts.py
index 33609ce..ceab2e2 100644
--- a/share/python/template/asserts.py
+++ b/share/python/template/asserts.py
@@ -1,9 +1,9 @@
-# Check two values for equality and give error if they are not equal
+# Check two values for equality and give an error if they are not equal
def assert_eq(a, b):
assert a == b, "expected %r == %r" % (a, b)
-# Check two values for inequality and give error if they are equal
+# Check two values for inequality and give an error if they are equal
def assert_ne(a, b):
assert a != b, "expected %r != %r" % (a, b)