Skip to content

Commit

Permalink
Fix proposal module msgs
Browse files Browse the repository at this point in the history
  • Loading branch information
ismellike committed Sep 11, 2023
1 parent cfd0233 commit ce6e5dc
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ fn setup_default_test(
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
2 changes: 2 additions & 0 deletions contracts/pre-propose/dao-pre-propose-approver/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ fn setup_default_test(
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down Expand Up @@ -255,6 +256,7 @@ fn setup_default_test(
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ fn setup_default_test(
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
1 change: 1 addition & 0 deletions contracts/pre-propose/dao-pre-propose-single/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ fn setup_default_test(
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ impl SuiteBuilder {
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ where
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ pub fn query_multiple_proposal_module(app: &App, core_addr: &Addr) -> Addr {
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2372,6 +2372,7 @@ fn test_query_list_proposals() {
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ where
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ pub(crate) fn query_single_proposal_module(app: &App, core_addr: &Addr) -> Addr
&dao_interface::msg::QueryMsg::ProposalModules {
start_after: None,
limit: None,
include_disabled: Some(true),
},
)
.unwrap();
Expand Down

0 comments on commit ce6e5dc

Please sign in to comment.