fix dup var names
Some checks failed
Lint / golangci-lint (push) Failing after 9m50s
Declarative Tests / test (push) Successful in 59s

This commit is contained in:
Matthew Rich 2024-05-06 13:26:38 -07:00
parent cf97af96b3
commit f6b8891508

View File

@ -321,8 +321,8 @@ func TestFileClone(t *testing.T) {
clone.Path = testCloneFile
assert.Nil(t, clone.Apply())
_, readErr := f.Read(ctx)
assert.Nil(t, readErr)
_,updateReadErr := f.Read(ctx)
assert.Nil(t, updateReadErr)
clone.Read(ctx)