summaryrefslogtreecommitdiffstats
path: root/commands/commands_test.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-02-15 13:03:36 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-02-15 13:03:36 +0100
commit837fdfdf45014e3d5ef3b00b01548b68a4489c5f (patch)
tree8711ad6408202a6cbf6b34a5efb7b5aeb868d730 /commands/commands_test.go
parent6819feab6c21f226c50705a61dd2eee8c6c564ea (diff)
commands: Rename --i18n-warnings to printI18nWarnings
To get it in line with the others.
Diffstat (limited to 'commands/commands_test.go')
-rw-r--r--commands/commands_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/commands_test.go b/commands/commands_test.go
index 3bf2b2e96..9e623e9a2 100644
--- a/commands/commands_test.go
+++ b/commands/commands_test.go
@@ -190,7 +190,7 @@ func TestFlags(t *testing.T) {
"--navigateToChanged",
"--disableLiveReload",
"--noHTTPCache",
- "--i18n-warnings",
+ "--printI18nWarnings",
"--destination=/tmp/mydestination",
"-b=https://example.com/b/",
"--port=1366",
@@ -223,7 +223,7 @@ func TestFlags(t *testing.T) {
// The flag is named printPathWarnings
c.Assert(cfg.GetBool("logPathWarnings"), qt.Equals, true)
- // The flag is named i18n-warnings
+ // The flag is named printI18nWarnings
c.Assert(cfg.GetBool("logI18nWarnings"), qt.Equals, true)
},
},