summaryrefslogtreecommitdiffstats
path: root/ffi/lang/python/tests/test_fingerprint.py
diff options
context:
space:
mode:
Diffstat (limited to 'ffi/lang/python/tests/test_fingerprint.py')
-rw-r--r--ffi/lang/python/tests/test_fingerprint.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffi/lang/python/tests/test_fingerprint.py b/ffi/lang/python/tests/test_fingerprint.py
index a5470f29..85a505d0 100644
--- a/ffi/lang/python/tests/test_fingerprint.py
+++ b/ffi/lang/python/tests/test_fingerprint.py
@@ -6,12 +6,12 @@ pretty = "7DCA 58B5 4EB1 4316 9DDE E15F 247F 6DAB C849 14FE"
def test_from_bytes():
f = Fingerprint.from_bytes(binary)
- assert str(f) == pretty
+ assert str(f) == hexy
assert f.hex() == hexy
def test_from_hex():
f = Fingerprint.from_hex(hexy)
- assert str(f) == pretty
+ assert str(f) == hexy
assert f.hex() == hexy
def test_to_keyid():