From 76647b33b1ba3bbbb4fcccfe0ea09976df3b545d Mon Sep 17 00:00:00 2001 From: Octavio Galland Date: Mon, 27 Jan 2025 10:10:29 -0300 Subject: [PATCH] typo in tar test --- tests/profiles/tar/task.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/profiles/tar/task.yaml b/tests/profiles/tar/task.yaml index 386c4565f..ebfd13295 100644 --- a/tests/profiles/tar/task.yaml +++ b/tests/profiles/tar/task.yaml @@ -5,7 +5,7 @@ execute: | echo "test" > file.txt tar -czf archive.tar file.txt rm file.txt - # extract archive, assert contets are correct + # extract archive, assert content is correct tar -xzf archive.tar test "$(cat file.txt)" = "test"