diff options
author | Neil <nyamatongwe@gmail.com> | 2018-03-16 16:57:06 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-03-16 16:57:06 +1100 |
commit | 191d250adfd9d50846db5350641d279cad39c325 (patch) | |
tree | 745391be4a4c56cf6823da5ac840b912ef83557d /test/unit/testCellBuffer.cxx | |
parent | 601277bddb0a4d871b8ab90e88b5d7dfde3ec2a3 (diff) | |
download | scintilla-mirror-191d250adfd9d50846db5350641d279cad39c325.tar.gz |
Remove line-end white space.
Diffstat (limited to 'test/unit/testCellBuffer.cxx')
-rw-r--r-- | test/unit/testCellBuffer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/testCellBuffer.cxx b/test/unit/testCellBuffer.cxx index 0efe35014..d99214481 100644 --- a/test/unit/testCellBuffer.cxx +++ b/test/unit/testCellBuffer.cxx @@ -26,7 +26,7 @@ TEST_CASE("CellBuffer") { const Sci::Position sLength = static_cast<Sci::Position>(strlen(sText)); CellBuffer cb(true); - + SECTION("InsertOneLine") { bool startSequence = false; const char *cpChange = cb.InsertString(0, sText, static_cast<int>(sLength), startSequence); @@ -119,7 +119,7 @@ TEST_CASE("CellBuffer") { REQUIRE(memcmp(cb.BufferPointer(), sTextAfterDeletion, strlen(sTextAfterDeletion)) == 0); REQUIRE(cb.CanUndo()); REQUIRE(!cb.CanRedo()); - + cb.DeleteUndoHistory(); REQUIRE(!cb.CanUndo()); REQUIRE(!cb.CanRedo()); |