From e7b35e0023ece9ba56cd972f1c9fc98cb3712e05 Mon Sep 17 00:00:00 2001 From: Jansen Price Date: Mon, 28 Sep 2020 09:43:08 -0500 Subject: [PATCH] Correct tests for renamed property --- tests/src/Orbit/ConfigTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/Orbit/ConfigTest.php b/tests/src/Orbit/ConfigTest.php index 4492c07..84d432e 100644 --- a/tests/src/Orbit/ConfigTest.php +++ b/tests/src/Orbit/ConfigTest.php @@ -57,7 +57,7 @@ port=1988 hostname=beatles.org tls_certfile=1212 tls_keyfile=3434 -keypassphrase=strawberry +key_passphrase=strawberry log_file=xyz.log log_level=cherry root_dir=blueberry @@ -73,7 +73,7 @@ EOF; $this->assertSame('beatles.org', $config->hostname); $this->assertSame('1212', $config->tls_certfile); $this->assertSame('3434', $config->tls_keyfile); - $this->assertSame('strawberry', $config->keypassphrase); + $this->assertSame('strawberry', $config->key_passphrase); $this->assertSame('xyz.log', $config->log_file); $this->assertSame('cherry', $config->log_level); $this->assertSame('blueberry', $config->root_dir);