aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/skylark/SkylarkIntegrationTest.java
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-09-13 15:57:52 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-09-14 09:34:11 +0000
commit6022b7bd3719933be90a23006bc3adbbb9d125ee (patch)
tree0e0bf10bbdfc0067acbc391cd25986614eaacc42 /src/test/java/com/google/devtools/build/lib/skylark/SkylarkIntegrationTest.java
parent7a0b5187052859c3c7c204dcc2067805bd69cb3d (diff)
*** Reason for rollback *** Breaks all projects using Bazel, see https://ci.bazel.io *** Original change description *** Deprecated and removed HOST_CFG and DATA_CFG global variables. -- MOS_MIGRATED_REVID=133005398
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/skylark/SkylarkIntegrationTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/skylark/SkylarkIntegrationTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/skylark/SkylarkIntegrationTest.java b/src/test/java/com/google/devtools/build/lib/skylark/SkylarkIntegrationTest.java
index fa8beb1508..a140187290 100644
--- a/src/test/java/com/google/devtools/build/lib/skylark/SkylarkIntegrationTest.java
+++ b/src/test/java/com/google/devtools/build/lib/skylark/SkylarkIntegrationTest.java
@@ -417,7 +417,7 @@ public class SkylarkIntegrationTest extends BuildViewTestCase {
" return struct(runfiles = rf)",
"",
"custom_rule = rule(implementation = custom_rule_impl, executable = True,",
- " attrs = {'data': attr.label_list(cfg='data', allow_files=True)})");
+ " attrs = {'data': attr.label_list(cfg=DATA_CFG, allow_files=True)})");
scratch.file(
"test/skylark/BUILD",