From 4c7f018c2c9ef47a98e7017da94ee70b2c6ec416 Mon Sep 17 00:00:00 2001 From: lcwik Date: Fri, 26 Jun 2015 10:59:50 -0700 Subject: [PATCH] Renamed --input to --inputFile for WordCount ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=96984656 --- test_wordcount.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_wordcount.sh b/test_wordcount.sh index 48c4e7cccb..bcacc1ebff 100755 --- a/test_wordcount.sh +++ b/test_wordcount.sh @@ -62,7 +62,7 @@ function run_via_mvn { local outfile_prefix="$(get_outfile_prefix "$name")" || exit 2 local cmd='mvn exec:java -f '"$TOPDIR"'/pom.xml -pl examples \ -Dexec.mainClass=com.google.cloud.dataflow.examples.WordCount \ - -Dexec.args="--runner=DirectPipelineRunner --input='"$input"' --output='"$outfile_prefix"'"' + -Dexec.args="--runner=DirectPipelineRunner --inputFile='"$input"' --output='"$outfile_prefix"'"' echo "$name: Running $cmd" >&2 sh -c "$cmd" check_result_hash "$name" "$outfile_prefix" "$expected_hash" @@ -77,7 +77,7 @@ function run_bundled { local cmd='java -cp '"$JAR_FILE"' \ com.google.cloud.dataflow.examples.WordCount \ --runner=DirectPipelineRunner \ - --input='"'$input'"' \ + --inputFile='"'$input'"' \ --output='"$outfile_prefix" echo "$name: Running $cmd" >&2 sh -c "$cmd"