Skip to content

Commit

Permalink
Fix version string
Browse files Browse the repository at this point in the history
  • Loading branch information
spiegel-im-spiegel committed Aug 12, 2020
1 parent f4814af commit 8c339b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion facade/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
var (
usage = []string{ //output message of version
Name + " " + Version,
"Copyright 2019 Spiegel, licensed under Apache License, Version 2.0",
"Copyright 2020 Spiegel, licensed under Apache License, Version 2.0",
}
)

Expand Down
2 changes: 1 addition & 1 deletion facade/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func TestVersionNormal(t *testing.T) {
out string
outErr string
}{
{args: []string{"version"}, out: "", outErr: "books-data developer version\nCopyright 2019 Spiegel, licensed under Apache License, Version 2.0\n"},
{args: []string{"version"}, out: "", outErr: "books-data developer version\nCopyright 2020 Spiegel, licensed under Apache License, Version 2.0\n"},
}

for _, tc := range testCases {
Expand Down

0 comments on commit 8c339b4

Please sign in to comment.