From 6d4b61007bddd46d2cdcfaad4ad5f57484f31c1c Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 5 Jul 2022 15:01:12 +0900 Subject: [PATCH] integration/client: fix typo in export_test.go Seet -> Seek begining -> beginning Signed-off-by: Ikko Ashimine --- integration/client/export_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/client/export_test.go b/integration/client/export_test.go index 1bd5375bd..ae3e747b1 100644 --- a/integration/client/export_test.go +++ b/integration/client/export_test.go @@ -60,7 +60,7 @@ func TestExport(t *testing.T) { 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) assertOCITar(t, dstFile) }