Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rs/nns/governance/src/governance/tests/neurons_fund.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::{
use assert_matches::assert_matches;
use ic_nervous_system_common::E8;
use ic_nervous_system_proto::pb::v1 as pb;
use ic_nns_governance_api as pb_api;
use ic_nns_governance_api as api;
use ic_nns_governance_init::GovernanceCanisterInitPayloadBuilder;
use test_data::CREATE_SERVICE_NERVOUS_SYSTEM_WITH_MATCHED_FUNDING;

Expand Down Expand Up @@ -77,7 +77,7 @@ fn proposal_fails_if_too_many_nf_neurons_can_occur() {
})
.unwrap();
let neurons = (0..num_neurons_fund_neurons)
.map(|id| pb_api::Neuron {
.map(|id| api::Neuron {
id: Some(NeuronId { id }),
..proto_neuron.clone()
})
Expand Down
Loading
Loading