diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-03-20 21:29:55 -0600 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-04 15:56:50 -0500 |
commit | 0fcb37adcb08e8a74d712ff8a6146f91fa14d7a9 (patch) | |
tree | 7d6c6c93b0180d670b859d6f861d4594bc849d96 /tests | |
parent | 695a17804ed261980e9c3c20a588c1f3a3a3507f (diff) | |
download | nextcloud-server-0fcb37adcb08e8a74d712ff8a6146f91fa14d7a9.tar.gz nextcloud-server-0fcb37adcb08e8a74d712ff8a6146f91fa14d7a9.zip |
OC_ -> NC_
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/ConfigTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/ConfigTest.php b/tests/lib/ConfigTest.php index f7add114aa8..418f7de0ae1 100644 --- a/tests/lib/ConfigTest.php +++ b/tests/lib/ConfigTest.php @@ -50,7 +50,7 @@ class ConfigTest extends TestCase { public function testGetValueReturnsEnvironmentValueIfSet() { $this->assertEquals('bar', $this->config->getValue('foo')); - putenv('OC_foo=baz'); + putenv('NC_foo=baz'); $this->assertEquals('baz', $this->config->getValue('foo')); } |