Skip to content

Commit

Permalink
fix: broken tests
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Case <[email protected]>
  • Loading branch information
richardcase committed Dec 6, 2021
1 parent 08ea86a commit ad1bbb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/microvmmachine_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ func machineReconcileNoVmCreateSucceeds(t *testing.T) {
g.Expect(createReq.Microvm).ToNot(BeNil())
g.Expect(createReq.Microvm.Labels).To(HaveLen(1))
expectedBootstrapData := base64.StdEncoding.EncodeToString([]byte(testbootStrapData))
g.Expect(createReq.Microvm.Metadata).To(HaveKeyWithValue("meta-data", expectedBootstrapData))
g.Expect(createReq.Microvm.Metadata).To(HaveKeyWithValue("user-data", expectedBootstrapData))
}

func machineReconcileNoVmCreateAdditionReconcile(t *testing.T) {
Expand Down

0 comments on commit ad1bbb3

Please sign in to comment.