From 59953f6f81267af7f92258c2c9821be4ffc7b2fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sa=C5=82aban?= Date: Tue, 30 Nov 2021 22:47:29 +0100 Subject: [PATCH] Remove obsolete tests --- tests/__init__.py | 1 - tests/test_ed25519.py | 9 --------- 2 files changed, 10 deletions(-) delete mode 100644 tests/test_ed25519.py diff --git a/tests/__init__.py b/tests/__init__.py index f78a677..3c9f091 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,3 @@ -from . import test_ed25519 from . import test_address from . import test_numbers from . import test_seed diff --git a/tests/test_ed25519.py b/tests/test_ed25519.py deleted file mode 100644 index f36e89e..0000000 --- a/tests/test_ed25519.py +++ /dev/null @@ -1,9 +0,0 @@ -import unittest -from monero import ed25519 - - -class Ed25519TestCase(unittest.TestCase): - def test_comp_decomp(self): - pts = [(0, 0), (1, 1), (3, 5), (5, 3), (7, 11), (11, 7)] - for p in pts: - self.assertEqual(p, ed25519.compress(ed25519.decompress(p)))