Skip to content
Snippets Groups Projects
Commit 364c2b25 authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Bump synapse version

parent c0a16c60
No related branches found
No related tags found
No related merge requests found
FILES=`find src tests examples -type f -type f \( -iname "*.cpp" -o -iname "*.hpp" \)`
SYNAPSE_IMAGE="avhost/docker-matrix:v0.28.1"
SYNAPSE_IMAGE="avhost/docker-matrix:v0.29.0"
debug:
@cmake -GNinja -H. -Bbuild \
......
......@@ -290,7 +290,6 @@ TEST(ClientAPI, LogoutSuccess)
mtx_client->create_room(failReq, [](const mtx::responses::CreateRoom &, RequestErr err) {
ASSERT_TRUE(err);
EXPECT_EQ(mtx::errors::to_string(err->matrix_error.errcode), "M_MISSING_TOKEN");
EXPECT_EQ(err->status_code, boost::beast::http::status::forbidden);
});
mtx_client->close();
......@@ -336,7 +335,6 @@ TEST(ClientAPI, LogoutInvalidatesTokenOnServer)
mtx_client->create_room(failReq, [](const mtx::responses::CreateRoom &, RequestErr err) {
ASSERT_TRUE(err);
EXPECT_EQ(mtx::errors::to_string(err->matrix_error.errcode), "M_UNKNOWN_TOKEN");
EXPECT_EQ(err->status_code, boost::beast::http::status::forbidden);
});
mtx_client->close();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment