Correct tests for renamed property

This commit is contained in:
Jansen Price 2020-09-28 09:43:08 -05:00
parent 2991248c47
commit e7b35e0023

View file

@ -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);