Skip to content

Commit

Permalink
chore: update Error message for bad bigtable.env variable (#91)
Browse files Browse the repository at this point in the history
At some point, the allowed settings were changed from "prod" and "emulator" to "cloud" and "emulator".
This change updates the error message associated to the illegal argument exception.
  • Loading branch information
sid-dinesh94 authored and igorbernstein2 committed Nov 15, 2019
1 parent b3da95a commit 1834fc1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -103,7 +103,7 @@ protected void before(Description description) throws Throwable {
default:
throw new IllegalArgumentException(
String.format(
"Unknown env: %s. Please set the system property %s to either 'emulator' or 'prod'.",
"Unknown env: %s. Please set the system property %s to either 'emulator' or 'cloud'.",
env, ENV_PROPERTY));
}
testEnv.start();
Expand Down

0 comments on commit 1834fc1

Please sign in to comment.