diff options
| author | Neil Jagdish Patel <neil.patel@canonical.com> | 2011-10-12 13:02:17 +0100 |
|---|---|---|
| committer | Neil Jagdish Patel <neil.patel@canonical.com> | 2011-10-12 13:02:17 +0100 |
| commit | 60cb3602aa1856cab08b90a5ebefa5a03f8b4385 (patch) | |
| tree | f56f4b35f20b33363782dcc6bdc5a1240e4be5df | |
| parent | db8459f00c494b6177af8aabf9acf80a753dc512 (diff) | |
Fix tests for FilerMultirangeWidget
(bzr r1718)
| -rw-r--r-- | tests/test_lens.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_lens.cpp b/tests/test_lens.cpp index 6b2cfea1b..8d6146131 100644 --- a/tests/test_lens.cpp +++ b/tests/test_lens.cpp @@ -512,14 +512,14 @@ TEST_F(TestLens, TestFilterMultiRangeLogic) EXPECT_TRUE (filter->filtering); EXPECT_TRUE (options[0]->active); EXPECT_TRUE (options[1]->active); - EXPECT_FALSE (options[2]->active); + EXPECT_TRUE (options[2]->active); EXPECT_FALSE (options[3]->active); options[0]->active = false; EXPECT_TRUE (filter->filtering); EXPECT_FALSE (options[0]->active); EXPECT_TRUE (options[1]->active); - EXPECT_FALSE (options[2]->active); + EXPECT_TRUE (options[2]->active); EXPECT_FALSE (options[3]->active); filter->Clear(); |
