From c938b6297e909f59f1de4839d5333f329f685a0b Mon Sep 17 00:00:00 2001 From: Kevin Hellemun Date: Mon, 2 Apr 2018 12:17:22 +0200 Subject: [PATCH] Refactored according to base class. (bunq/sdk_php#120) --- tests/Model/Generated/Endpoint/SessionTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Model/Generated/Endpoint/SessionTest.php b/tests/Model/Generated/Endpoint/SessionTest.php index 55318fbd..f3c1f04a 100644 --- a/tests/Model/Generated/Endpoint/SessionTest.php +++ b/tests/Model/Generated/Endpoint/SessionTest.php @@ -19,7 +19,7 @@ class SessionTest extends BunqSdkTestBase /** * Full name of context config file to use for testing. */ - const FILENAME_CONTEXT_CONFIG = __DIR__ . '/../bunq-test.conf'; + const FILE_PATH_CONTEXT_CONFIG = __DIR__ . '/../bunq-test.conf'; /** * The amount of secconds to sleep to prevent the api from returning a 429. @@ -43,6 +43,6 @@ public static function tearDownAfterClass() { sleep(self::SECONDS_TO_SLEEP); BunqContext::getApiContext()->resetSession(); - BunqContext::getApiContext()->save(self::FILENAME_CONTEXT_CONFIG); + BunqContext::getApiContext()->save(self::FILE_PATH_CONTEXT_CONFIG); } }