]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/test_gost3411_2012.py
Consistent source code quote symbols
[pygost.git] / pygost / test_gost3411_2012.py
index 95af7a9cd793283276459957b8a39941ef9b5576..bcb4f20b20f5cf9010d860cf33b50824de7683ac 100644 (file)
@@ -29,9 +29,9 @@ class TestCopy(TestCase):
     def runTest(self):
         m = GOST34112012256()
         c = m.copy()
-        m.update(b'foobar')
-        c.update(b'foo')
-        c.update(b'bar')
+        m.update(b"foobar")
+        c.update(b"foo")
+        c.update(b"bar")
         self.assertEqual(m.digest(), c.digest())