Skip to content

Commit

Permalink
🐞 fix incomplete rename of fixture data
Browse files Browse the repository at this point in the history
  • Loading branch information
aramprice committed Jul 20, 2024
1 parent b699ebe commit ad23b9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package_stemcell/ovftool/ovftool_windows_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var _ = Describe("ovftool", func() {
var err error
key, err = registry.OpenKey(registry.CURRENT_USER, `SOFTWARE`, registry.WRITE)
Expect(err).ToNot(HaveOccurred())
_, exists, err := registry.CreateKey(key, `faketempkey`, registry.WRITE)
_, exists, err := registry.CreateKey(key, `fake-temp-key`, registry.WRITE)
Expect(err).ToNot(HaveOccurred())
Expect(exists).To(BeFalse())
keypaths = []string{`\SOFTWARE\fake-temp-key`}
Expand Down

0 comments on commit ad23b9d

Please sign in to comment.