aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/ConfigTest.php2
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'));
}