SKALE-2202 fix test

parent 1a73f92a
......@@ -42,7 +42,6 @@ echo "Test run requested"
./testw [dkg-encr-sshares]
./testw [dkg-verify]
./testw [get-server-status]
./testw [ecdsa-api]
./testw [dkg-api]
./testw [dkg-poly-exists]
./testw [aes-encrypt-decrypt]
......
......@@ -875,11 +875,11 @@ TEST_CASE_METHOD(TestFixture, "PolyExists test", "[dkg-poly-exists]") {
Json::Value polyExists = c.isPolyExists(polyName);
REQUIRE(polyExists["exists"].asBool());
REQUIRE(polyExists["IsExist"].asBool());
Json::Value polyDoesNotExist = c.isPolyExists("Vasya");
REQUIRE(!polyDoesNotExist["exists"].asBool());
REQUIRE(!polyDoesNotExist["IsExist"].asBool());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment