| Index: third_party/closure_compiler/compiler_test.py
|
| diff --git a/third_party/closure_compiler/compiler_test.py b/third_party/closure_compiler/compiler_test.py
|
| index 479fb73b4842a49bbad70649b321ece2e395824c..ebeb7381b7dcce5e8b47ceab6c74495323e765d2 100755
|
| --- a/third_party/closure_compiler/compiler_test.py
|
| +++ b/third_party/closure_compiler/compiler_test.py
|
| @@ -32,7 +32,9 @@ _COMMON_CLOSURE_ARGS = _GYPI_DICT["closure_args"] + \
|
|
|
| class CompilerTest(unittest.TestCase):
|
| _ASSERT_DEFINITION = Processor(_ASSERT_JS).contents
|
| - _CR_DEFINE_DEFINITION = (Processor(_PROMISE_RESOLVER_JS).contents +
|
| + _PROMISE_RESOLVER_DEFINITION = (_ASSERT_DEFINITION +
|
| + Processor(_PROMISE_RESOLVER_JS).contents)
|
| + _CR_DEFINE_DEFINITION = (_PROMISE_RESOLVER_DEFINITION +
|
| Processor(_CR_JS).contents)
|
| _CR_UI_DECORATE_DEFINITION = Processor(_CR_UI_JS).contents
|
|
|
|
|