We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbc6425 commit dcb5c88Copy full SHA for dcb5c88
1 file changed
test/index.php
@@ -108,11 +108,11 @@ function runTests() {
108
109
lineDupBreakCommentRemove: function() {
110
title = "Duplicate, add break, comment and remove line";
111
- ICEcoder.duplicateLine(1);
+ ICEcoder.duplicateLines(1);
112
ICEcoder.addLineBreakAtEnd(2);
113
ICEcoder.lineCommentToggle();
114
line2 = cM.getLine(2);
115
- ICEcoder.removeLine(2);
+ ICEcoder.removeLines(2);
116
line2Now = cM.getLine(2);
117
if (line2 == "<!-- <p>Updated</p><br>//-->" && line2Now == "</div>") {
118
testResult("+ GOOD",title);
0 commit comments