| OLD | NEW |
| 1 # Copyright (C) 2011 Google Inc. All rights reserved. | 1 # Copyright (C) 2011 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 return MockBuilder(name) | 84 return MockBuilder(name) |
| 85 | 85 |
| 86 def builder_statuses(self): | 86 def builder_statuses(self): |
| 87 return [ | 87 return [ |
| 88 self._mock_builder1_status, | 88 self._mock_builder1_status, |
| 89 self._mock_builder2_status, | 89 self._mock_builder2_status, |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 def light_tree_on_fire(self): | 92 def light_tree_on_fire(self): |
| 93 self._mock_builder2_status["is_green"] = False | 93 self._mock_builder2_status["is_green"] = False |
| OLD | NEW |