From 1d0c0b6977f97cceabebf25bf320f29aa2c860ce Mon Sep 17 00:00:00 2001 From: Meezaan-ud-Din Date: Tue, 22 Jan 2019 14:21:56 +0000 Subject: [PATCH] removed uneeded test --- tests/Unit/ConfigTest.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/Unit/ConfigTest.php b/tests/Unit/ConfigTest.php index 9f1fd4d..799aca7 100644 --- a/tests/Unit/ConfigTest.php +++ b/tests/Unit/ConfigTest.php @@ -14,10 +14,4 @@ public function testMemcache() $c = new Config(); $this->assertEquals(2, count((array)$c->connection('memcache'))); } - - public function testGoogleKey() - { - $c = new Config(); - $this->assertTrue(is_string($c->apiKey('google_geocoding')), 'Actual Value: ' . $c->apiKey('google_geocoding')); - } }