Skip to content

Commit 8aac4a4

Browse files
committed
test_keys.py: fix typo in test case name
1 parent 53d87a4 commit 8aac4a4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.coveragerc

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ include =
55
src/ecdsa/*
66
omit =
77
src/ecdsa/_version.py
8-
src/ecdsa/test_*

src/ecdsa/test_keys.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def test_bytes_compressed(self):
9797

9898
self.assertEqual(self.vk.to_string(), vk.to_string())
9999

100-
def test_bytearray_uncompressed(self):
100+
def test_bytearray_compressed(self):
101101
vk = VerifyingKey.from_string(bytearray(b'\x02' + self.key_bytes[:24]))
102102

103103
self.assertEqual(self.vk.to_string(), vk.to_string())

0 commit comments

Comments
 (0)