Skip to content

Commit

Permalink
fixup! itest: account for new uni ID proof type field when syncing
Browse files Browse the repository at this point in the history
  • Loading branch information
ffranr committed Oct 10, 2023
1 parent 3ab1c01 commit dbafc97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions itest/universe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ func testUniverseREST(t *harnessTest) {

// Construct universe namespace using the group key ID.
namespace := fmt.Sprintf(
"%s-%s", universe.ProofTypeTransfer, groupKeyID,
"%s-%s", universe.ProofTypeIssuance, groupKeyID,
)
require.Contains(t.t, roots.UniverseRoots, namespace)

Expand All @@ -344,7 +344,7 @@ func testUniverseREST(t *harnessTest) {
uniRoot, foundRoot := roots.UniverseRoots[namespace]
require.True(t.t, foundRoot)
require.True(t.t, AssertUniverseRootEqual(
uniRoot, assetRoot.TransferRoot,
uniRoot, assetRoot.IssuanceRoot,
))
}
}
Expand Down

0 comments on commit dbafc97

Please sign in to comment.