This commit is contained in:
team-devstage 2021-01-20 11:34:29 +01:00 committed by Ulf Gebhardt
parent 324032961e
commit 81aacdb58b
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ namespace controller {
}
TEST_F(TestHederaAccount, TestPick) {
auto hedera_account = controller::HederaAccount::pick(model::table::HEDERA_TESTNET, false);
auto hedera_account = controller::HederaAccount::pick(ServerConfig::HEDERA_TESTNET, false);
EXPECT_FALSE(hedera_account.isNull());
}
}
}

View File

@ -8,7 +8,7 @@ namespace controller {
}
TEST_F(TestHederaId, TestFindTopicId) {
auto hedera_topic_id = controller::HederaId::find(1, model::table::HEDERA_TESTNET);
auto hedera_topic_id = controller::HederaId::find(1, ServerConfig::HEDERA_TESTNET);
EXPECT_FALSE(hedera_topic_id.isNull());
}
}
}