Skip to content

Commit

Permalink
Fix a bug in the eject test that was supposed to check for unseen files
Browse files Browse the repository at this point in the history
  • Loading branch information
Frassle committed Dec 10, 2022
1 parent a7466a2 commit 18c7754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/tf2pulumi/convert/eject_test.go
Expand Up @@ -143,7 +143,7 @@ func TestEject(t *testing.T) {
assert.Equal(t, tokens.PackageName(tt.name), project.Name)

// Assert every pcl file is seen
infos, err := os.ReadDir(testDir)
infos, err := os.ReadDir(pclPath)
if !assert.NoError(t, err) {
return
}
Expand Down

0 comments on commit 18c7754

Please sign in to comment.