Skip to content

Commit

Permalink
One or two UUID-types missed...
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMcFelix committed Jun 21, 2024
1 parent a63b8b0 commit 28cb739
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nexus/tests/integration_tests/vpc_routers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ use omicron_common::api::external::NameOrId;
use omicron_common::api::external::SimpleIdentity;
use omicron_common::api::internal::shared::ResolvedVpcRoute;
use omicron_common::api::internal::shared::RouterTarget;
use omicron_uuid_kinds::GenericUuid;
use omicron_uuid_kinds::InstanceUuid;
use std::collections::HashMap;

pub const PROJECT_NAME: &str = "cartographer";
Expand Down Expand Up @@ -512,7 +514,11 @@ async fn test_vpc_routers_custom_delivered_to_instance(
true,
)
.await;
instance_simulate(nexus, &instance.identity.id).await;
instance_simulate(
nexus,
&InstanceUuid::from_untyped_uuid(instance.identity.id),
)
.await;

let (.., authz_instance) = LookupPath::new(&opctx, &datastore)
.instance_id(instance.identity.id)
Expand Down

0 comments on commit 28cb739

Please sign in to comment.