Skip to content

Commit

Permalink
Fix return in getSignatories mock
Browse files Browse the repository at this point in the history
  • Loading branch information
grimadas committed Jul 19, 2017
1 parent 8d9faa9 commit 93049ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/module/irohad/validation/stateful_validation_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ TEST(CommandValidation, assign_master_key) {
creator.master_key};

EXPECT_CALL(test_wsv, getSignatories(_))
.WillRepeatedly(Return(std::vector<iroha::ed25519::pubkey_t>{}));
.WillRepeatedly(Return(nonstd::nullopt));

EXPECT_CALL(test_wsv, getSignatories(ACCOUNT_ID))
.WillRepeatedly(Return(sigs));
Expand Down

0 comments on commit 93049ef

Please sign in to comment.