summaryrefslogtreecommitdiff
path: root/tests
diff options
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2014-02-17 22:24:03 +0100
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2014-02-17 22:24:03 +0100
commit5c5a2cc50b73c465a24cd9c1c2ec6177ad124973 (patch)
tree4ec343671336c6564e622564aa51e8415846d82b /tests
parentf006f76fb87a548f4b8bd4efa1c48e1f7200357a (diff)
SpreadFilter: use longer search wait timeout
(bzr r3656.5.10)
Diffstat (limited to 'tests')
-rw-r--r--tests/test_spread_filter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_spread_filter.cpp b/tests/test_spread_filter.cpp
index c70659523..ccb813ec0 100644
--- a/tests/test_spread_filter.cpp
+++ b/tests/test_spread_filter.cpp
@@ -86,7 +86,7 @@ TEST_F(TestSpreadFilter, VisibleWithText)
filter.text = filter_string;
EXPECT_CALL(sig_receiver, TextChanged(filter_string));
- Utils::WaitForTimeoutMSec(50);
+ Utils::WaitForTimeoutMSec();
Tick();
EXPECT_EQ(filter_string, filter.text());
@@ -96,14 +96,14 @@ TEST_F(TestSpreadFilter, VisibleWithText)
TEST_F(TestSpreadFilter, InVisibleWithoutText)
{
filter.text = "Really, Unity is cool!";
- Utils::WaitForTimeoutMSec(50);
+ Utils::WaitForTimeoutMSec();
Tick();
ASSERT_TRUE(filter.Visible());
filter.text = "";
EXPECT_CALL(sig_receiver, TextChanged(""));
- Utils::WaitForTimeoutMSec(50);
+ Utils::WaitForTimeoutMSec();
Tick();
EXPECT_TRUE(filter.text().empty());