Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: third_party/closure_compiler/compiler_test.py

Issue 1871043004: Make PromiseResolver's members read-only (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: base off of https://codereview.chromium.org/1869883003/ Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/webui/webui_resource_browsertest.cc ('k') | ui/webui/resources/html/promise_resolver.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/test/data/webui/webui_resource_browsertest.cc ('k') | ui/webui/resources/html/promise_resolver.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698