summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJesper K. Pedersen <jesper.pedersen@kdab.com>2013-05-17 08:37:42 +0200
committerJesper K. Pedersen <jesper.pedersen@kdab.com>2013-05-21 15:05:35 +0200
commit8a83b2e535a238f6aacff63beefd1302303753af (patch)
tree27518cba905d0ff81116f49b2a4d2d9a8db9773f /tests
parentaad6a7fc57ad69aab3688047ae7ead8480dafd37 (diff)
converted slots into properties
Change-Id: Ifd4c6913021ff3d30b86ad6c37751883823fd10a Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test.js b/tests/test.js
index 9269328..6c4f6de 100644
--- a/tests/test.js
+++ b/tests/test.js
@@ -68,8 +68,8 @@ if (TEST_JS_LOADED == undefined) {
}
function verifyPosition(line,column, message) {
- compare(editor.currentLine(), line, message)
- compare(editor.currentColumn(), column, message)
+ compare(editor.currentLine, line, message)
+ compare(editor.currentColumn, column, message)
}
function assert(cond, message) {