From bd490e788cbe17c86777e353f815d1a573163ba5 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 12 Jan 2020 17:54:40 +0100 Subject: [PATCH] Remove test for Instance::get_proxy(). --- tests/test_instance.cpp | 2 -- 1 file changed, 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));