From cf61b1504cc94022a06b8e3b514ae80bba4f85ef Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Mon, 13 May 2024 09:42:25 -0700 Subject: [PATCH] fix typo --- internal/resource/declaration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/resource/declaration_test.go b/internal/resource/declaration_test.go index 5507f65..6d28169 100644 --- a/internal/resource/declaration_test.go +++ b/internal/resource/declaration_test.go @@ -129,7 +129,7 @@ func TestDeclarationTransition(t *testing.T) { assert.Nil(t, e) assert.Equal(t, TypeName("file"), resourceDeclaration.Type) assert.Equal(t, fileName, resourceDeclaration.Attributes.(*File).Path) - err := sourceDeclaration.Apply() + err := resourceDeclaration.Apply() assert.Nil(t, err) assert.FileExists(t, fileName) }