mirror of
https://github.com/restic/restic.git
synced 2025-08-12 11:27:46 +00:00
errors: Add "Fatal" prefix for Fatalf()
This commit is contained in:
@@ -65,11 +65,11 @@ var invalidOptsTests = []struct {
|
||||
}{
|
||||
{
|
||||
[]string{"=bar", "bar=baz", "k="},
|
||||
"empty key is not a valid option",
|
||||
"Fatal: empty key is not a valid option",
|
||||
},
|
||||
{
|
||||
[]string{"x=1", "foo=bar", "y=2", "foo=baz"},
|
||||
`key "foo" present more than once`,
|
||||
`Fatal: key "foo" present more than once`,
|
||||
},
|
||||
}
|
||||
|
||||
@@ -185,7 +185,7 @@ var invalidSetTests = []struct {
|
||||
"first_name": "foobar",
|
||||
},
|
||||
"ns",
|
||||
"option ns.first_name is not known",
|
||||
"Fatal: option ns.first_name is not known",
|
||||
},
|
||||
{
|
||||
Options{
|
||||
|
Reference in New Issue
Block a user