forked from TrueCloudLab/restic
Convert underscore variable names to camelCase
This commit is contained in:
parent
d0329cf3eb
commit
b77e933d80
1 changed files with 5 additions and 5 deletions
|
@ -42,9 +42,9 @@ func TestFind(t *testing.T) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
expected_match := "20bdc1402a6fc9b633aaffffffffffffffffffffffffffffffffffffffffffff"
|
expectedMatch := "20bdc1402a6fc9b633aaffffffffffffffffffffffffffffffffffffffffffff"
|
||||||
if f != expected_match {
|
if f != expectedMatch {
|
||||||
t.Errorf("Wrong match returned want %s, got %s", expected_match, f)
|
t.Errorf("Wrong match returned want %s, got %s", expectedMatch, f)
|
||||||
}
|
}
|
||||||
|
|
||||||
f, err = Find(m, SnapshotFile, "NotAPrefix")
|
f, err = Find(m, SnapshotFile, "NotAPrefix")
|
||||||
|
@ -56,8 +56,8 @@ func TestFind(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try to match with a prefix longer than any ID.
|
// Try to match with a prefix longer than any ID.
|
||||||
extra_length_id := samples[0].String() + "f"
|
extraLengthID := samples[0].String() + "f"
|
||||||
f, err = Find(m, SnapshotFile, extra_length_id)
|
f, err = Find(m, SnapshotFile, extraLengthID)
|
||||||
if err != ErrNoIDPrefixFound {
|
if err != ErrNoIDPrefixFound {
|
||||||
t.Error("Expected no snapshots to be matched.")
|
t.Error("Expected no snapshots to be matched.")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue