diff options
| author | Brandon Schaefer <brandontschaefer@gmail.com> | 2014-03-05 14:14:16 -0800 |
|---|---|---|
| committer | Brandon Schaefer <brandontschaefer@gmail.com> | 2014-03-05 14:14:16 -0800 |
| commit | d87e4dd265619956a60a97bb4b3b0ce6c898dc56 (patch) | |
| tree | 71b99968cc4d986b5cebbc57f2ec9bdc5bda4b3f | |
| parent | d566eac2698c5ed8ff181712b2f44e1cc9728fef (diff) | |
* False not None
(bzr r3695.3.2)
| -rw-r--r-- | tests/autopilot/unity/tests/test_spread.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/autopilot/unity/tests/test_spread.py b/tests/autopilot/unity/tests/test_spread.py index 0368d6f0f..beaf41f82 100644 --- a/tests/autopilot/unity/tests/test_spread.py +++ b/tests/autopilot/unity/tests/test_spread.py @@ -70,7 +70,7 @@ class SpreadTests(UnityTestCase): def assertWindowIsClosed(self, xid): """Assert that a window is not in the list of the open windows""" refresh_fn = lambda: xid in [w.x_id for w in self.process_manager.get_open_windows()] - self.assertThat(refresh_fn, Equals(None)) + self.assertThat(refresh_fn, Eventually(Equals(False))) def assertLauncherIconsSaturated(self): for icon in self.unity.launcher.model.get_launcher_icons(): |
