Skip to content

Commit

Permalink
Fix typos in dropTailC tests
Browse files Browse the repository at this point in the history
  • Loading branch information
t-wallet committed Sep 16, 2024
1 parent e6c7245 commit 9ac2866
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,22 +143,22 @@ prop_droptail_7_bytes_d1 = dropTailTest d7 d1
prop_droptail_4_bytes_d3 :: Property
prop_droptail_4_bytes_d3 = dropTailTest d4 d3

prop_droptail_7_bytes_d3 :: Property
prop_droptail_7_bytes_d3 = dropTailTest d7 d4
prop_droptail_7_bytes_d4 :: Property
prop_droptail_7_bytes_d4 = dropTailTest d7 d4

-- | dataWidth ~ n
prop_droptail_4_bytes_d4 :: Property
prop_droptail_4_bytes_d4 = dropTailTest d4 d4

prop_droptail_7_bytes_d4 :: Property
prop_droptail_7_bytes_d4 = dropTailTest d7 d7
prop_droptail_7_bytes_d7 :: Property
prop_droptail_7_bytes_d7 = dropTailTest d7 d7

-- | dataWidth > n
prop_droptail_4_bytes_d7 :: Property
prop_droptail_4_bytes_d7 = dropTailTest d4 d7

prop_droptail_7_bytes_d7 :: Property
prop_droptail_7_bytes_d7 = dropTailTest d7 d12
prop_droptail_7_bytes_d12 :: Property
prop_droptail_7_bytes_d12 = dropTailTest d7 d12

tests :: TestTree
tests =
Expand Down

0 comments on commit 9ac2866

Please sign in to comment.