From dcb5c886fa50fe2bf433a5ed50e3d88a2f23e1b3 Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Sat, 6 Jul 2013 18:05:40 +0100 Subject: [PATCH] Function is now plural as it handles multi lines --- test/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/index.php b/test/index.php index d84c0e7..6a555bc 100644 --- a/test/index.php +++ b/test/index.php @@ -108,11 +108,11 @@ test = { lineDupBreakCommentRemove: function() { title = "Duplicate, add break, comment and remove line"; - ICEcoder.duplicateLine(1); + ICEcoder.duplicateLines(1); ICEcoder.addLineBreakAtEnd(2); ICEcoder.lineCommentToggle(); line2 = cM.getLine(2); - ICEcoder.removeLine(2); + ICEcoder.removeLines(2); line2Now = cM.getLine(2); if (line2 == "" && line2Now == "") { testResult("+ GOOD",title);