summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index c0cfc10..f203615 100644
--- a/test.py
+++ b/test.py
@@ -22,7 +22,7 @@ class TestViewState(unittest.TestCase):
def test_parse_const_value(self):
vs = ViewState()
vs.raw = b'\xff\x01\x67'
- self.assertEquals(vs.decode(), True)
+ self.assertEqual(vs.decode(), True)
if __name__ == '__main__':
unittest.main()