aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test
diff options
context:
space:
mode:
authorGravatar ccalvarin <ccalvarin@google.com>2018-06-04 12:54:11 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-06-04 12:55:31 -0700
commitc47aeaa5fe1c51ebc85e1c3dd3e36d40911ae8b2 (patch)
tree95b35644b4ed3581fb108070720945895e73337c /src/test
parent61377f7e0b31d47d27b184edf928f2c446da0867 (diff)
Remove experimental prefix for build event output file flags.
It's been about a year since these haven't been necessary. RELNOTES: None. PiperOrigin-RevId: 199178625
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java b/src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java
index 45cded6792..9811f41d95 100644
--- a/src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java
+++ b/src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java
@@ -129,9 +129,9 @@ public class BazelBuildEventServiceModuleTest {
assertThat(commandOptions).isNotEmpty();
OptionsParser optionsParser = OptionsParser.newOptionsParser(commandOptions);
optionsParser.parse(
- "--experimental_build_event_text_file", "/tmp/foo.txt",
- "--experimental_build_event_binary_file", "/tmp/foo.bin",
- "--experimental_build_event_json_file", "/tmp/foo.json");
+ "--build_event_text_file", "/tmp/foo.txt",
+ "--build_event_binary_file", "/tmp/foo.bin",
+ "--build_event_json_file", "/tmp/foo.json");
BuildEventStreamOptions options = optionsParser.getOptions(BuildEventStreamOptions.class);
assertThat(options.getBuildEventTextFile()).isEqualTo("/tmp/foo.txt");
assertThat(options.getBuildEventBinaryFile()).isEqualTo("/tmp/foo.bin");