diff options
author | Neil <nyamatongwe@gmail.com> | 2017-04-03 18:59:40 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-04-03 18:59:40 +1000 |
commit | 9ea239e7de4b11ac812640a54a67b4231c3b9ded (patch) | |
tree | 4e724a8f2024a87e2fd99c2648b882f02107e861 /test | |
parent | 9f794eebb386661bc4a2c06005e181683f7f3280 (diff) | |
download | scintilla-mirror-9ea239e7de4b11ac812640a54a67b4231c3b9ded.tar.gz |
Fix test which was broken by encapsulation of revision 6195.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/testDecoration.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/testDecoration.cxx b/test/unit/testDecoration.cxx index 2f1c66a30..bbd07b868 100644 --- a/test/unit/testDecoration.cxx +++ b/test/unit/testDecoration.cxx @@ -24,7 +24,7 @@ TEST_CASE("Decoration") { Decoration deco(indicator); SECTION("HasCorrectIndicator") { - REQUIRE(indicator == deco.indicator); + REQUIRE(indicator == deco.Indicator()); } SECTION("IsEmptyInitially") { |