summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/suite.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/suite.hs b/tests/suite.hs
index afadc35..0ddc770 100644
--- a/tests/suite.hs
+++ b/tests/suite.hs
@@ -42,11 +42,11 @@ prop_s2k_count c =
42 42
43prop_MPI_serialization_loop :: OpenPGP.MPI -> Bool 43prop_MPI_serialization_loop :: OpenPGP.MPI -> Bool
44prop_MPI_serialization_loop mpi = 44prop_MPI_serialization_loop mpi =
45 mpi == decode (encode mpi) 45 mpi == decode' (encode mpi)
46 46
47prop_SignatureSubpacket_serialization_loop :: OpenPGP.SignatureSubpacket -> Bool 47prop_SignatureSubpacket_serialization_loop :: OpenPGP.SignatureSubpacket -> Bool
48prop_SignatureSubpacket_serialization_loop packet = 48prop_SignatureSubpacket_serialization_loop packet =
49 packet == decode (encode packet) 49 packet == decode' (encode packet)
50 50
51tests :: [Test] 51tests :: [Test]
52tests = 52tests =