| Index: cc/trees/layer_tree_host_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest.cc b/cc/trees/layer_tree_host_unittest.cc
|
| index 95c44bcfeb1559590cee4f2d1953371d8b35bc17..b194491d7606763193f75e034c965c5b022ebeb7 100644
|
| --- a/cc/trees/layer_tree_host_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_unittest.cc
|
| @@ -91,8 +91,8 @@
|
| }
|
|
|
| virtual void AfterTest() OVERRIDE {
|
| - EXPECT_LE(1, num_commits_);
|
| - EXPECT_LE(1, num_draws_);
|
| + EXPECT_GE(1, num_commits_);
|
| + EXPECT_GE(1, num_draws_);
|
| }
|
|
|
| private:
|
| @@ -1967,7 +1967,7 @@
|
| int num_complete_commits_;
|
| };
|
|
|
| -SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestDeferCommits);
|
| +MULTI_THREAD_TEST_F(LayerTreeHostTestDeferCommits);
|
|
|
| class LayerTreeHostWithProxy : public LayerTreeHost {
|
| public:
|
|
|