Merge pull request #7130 from eltociear/patch-1

integration/client: fix typo in export_test.go
This commit is contained in:
Kazuyoshi Kato 2022-07-06 09:49:02 -07:00 committed by GitHub
commit a0da9edd98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ func TestExport(t *testing.T) {
t.Fatal(err) t.Fatal(err)
} }
// Seet to begining of file before passing it to assertOCITar() // Seek to beginning of file before passing it to assertOCITar()
dstFile.Seek(0, 0) dstFile.Seek(0, 0)
assertOCITar(t, dstFile) assertOCITar(t, dstFile)
} }