summaryrefslogtreecommitdiffstats
path: root/tests/test_instance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_instance.cpp')
-rw-r--r--tests/test_instance.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_instance.cpp b/tests/test_instance.cpp
index 8e38275..646a271 100644
--- a/tests/test_instance.cpp
+++ b/tests/test_instance.cpp
@@ -65,13 +65,11 @@ SCENARIO ("mastopp::Instance")
}
THEN ("No exception is thrown")
- AND_THEN ("get_proxy() returns the set value.")
AND_THEN ("get_access_token() returns the set value.")
AND_THEN ("get_hostname() returns the set value.")
AND_THEN ("get_baseuri() returns the expected value.")
{
REQUIRE_FALSE(exception);
- REQUIRE(instance.get_proxy() == proxy);
REQUIRE(instance.get_access_token() == access_token);
REQUIRE(instance.get_hostname() == hostname);
REQUIRE(instance.get_baseuri() == (string("https://") += hostname));