Skip to content

Commit

Permalink
Fix registry key in End to End test
Browse files Browse the repository at this point in the history
This was introduced in some previous PR, but we didn't notice because
our CI is broken.
  • Loading branch information
EduardGomezEscandell committed Nov 8, 2023
1 parent ab6a5aa commit 480fb74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion end-to-end/organization_token_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,6 @@ func activateOrgSubscription(t *testing.T) {
require.NoErrorf(t, err, "Setup: could not open UbuntuPro registry key")
defer key.Close()

err = key.SetStringValue("ProTokenOrg", token)
err = key.SetStringValue("UbuntuProToken", token)
require.NoError(t, err, "could not write token in registry")
}

0 comments on commit 480fb74

Please sign in to comment.