Skip to content

Commit a768fd5

Browse files
committed
Fix test_scintillawrapper_int_int_stringresult_in_callback_getCurLine is calling wrong function
1 parent 7e87af1 commit a768fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PythonScript/python_tests/tests/test_ScintillaWrapperTestCase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ def callback_scintillawrapper_int_int_stringresult_getCurLine(self, args):
664664
self.callbackCalled = True
665665

666666
def test_scintillawrapper_int_int_stringresult_in_callback_getCurLine(self):
667-
editor.callback(lambda args: self.callback_scintillawrapper_int_int_stringresult_getLine(args), [SCINTILLANOTIFICATION.MODIFIED])
667+
editor.callback(lambda args: self.callback_scintillawrapper_int_int_stringresult_getCurLine(args), [SCINTILLANOTIFICATION.MODIFIED])
668668
editor.write("One\r\nTwo\r\nThree")
669669
self.poll_for_callback()
670670
self.assertEqual(self.callbackCalled, True)

0 commit comments

Comments
 (0)