tests/app/soc/logic/test_allocations.py
changeset 1721 9acf4fe1b9bb
parent 1718 ca34f4a8c61b
child 1751 17c7a7a48dc7
--- a/tests/app/soc/logic/test_allocations.py	Sat Mar 07 17:55:14 2009 +0000
+++ b/tests/app/soc/logic/test_allocations.py	Sat Mar 07 18:16:54 2009 +0000
@@ -220,7 +220,7 @@
     with_adjusting = self.allocater.allocate(locked_slots, adjusted_slots)
     without_adjusting = self.allocater.allocate(locked_slots, {})
 
-    expected = without_adjusting['gcc'] + 10
+    expected = without_adjusting['gcc']
     actual = with_adjusting['gcc']
 
-    self.failUnlessEqual(expected, actual)
+    self.failUnless(actual > expected)