summaryrefslogtreecommitdiffstats
path: root/TestAufgabeFFP7.hs
diff options
context:
space:
mode:
Diffstat (limited to 'TestAufgabeFFP7.hs')
-rwxr-xr-xTestAufgabeFFP7.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/TestAufgabeFFP7.hs b/TestAufgabeFFP7.hs
index bbe3540..376e782 100755
--- a/TestAufgabeFFP7.hs
+++ b/TestAufgabeFFP7.hs
@@ -23,8 +23,8 @@ cases1 = TestLabel "buffer" $ TestList [
23 (insert 'b' (100, "a")), 23 (insert 'b' (100, "a")),
24 24
25 TestCase $ assertEqual "delete1" (0, "bc") 25 TestCase $ assertEqual "delete1" (0, "bc")
26 (delete (0, "abc")), 26 (delete (0, "bc")),
27 TestCase $ assertEqual "delete2" (2, "ab") 27 TestCase $ assertEqual "delete2" (1, "ac")
28 (delete (2, "abc")), 28 (delete (2, "abc")),
29 TestCase $ assertEqual "delete3" (0, "abc") 29 TestCase $ assertEqual "delete3" (0, "abc")
30 (delete (-100, "abc")), 30 (delete (-100, "abc")),