Adapt patch to upstream changes

Use tests.FileCmp instead of util.FileCmp.
This commit is contained in:
Matthias Riße 2024-05-14 14:34:44 +02:00
parent aa75447bb6
commit b2f3d18a8d

View file

@ -110,7 +110,7 @@ func doAnnexMediaTest(t *testing.T, ctx APITestContext, file string) {
fd.Close()
// verify the download
match, err := util.FileCmp(localObjectPath, remoteObjectPath, 0)
match, err := tests.FileCmp(localObjectPath, remoteObjectPath, 0)
require.NoError(t, err)
require.True(t, match, "Annexed files should be the same")
}