File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -430,16 +430,16 @@ public function testHttpVarIsPartiallyOverridden()
430430 $ this ->assertSame ('http_value ' , $ _SERVER ['HTTP_TEST_ENV_VAR ' ]);
431431 }
432432
433- public function testEnvVarIsOverriden ()
433+ public function testEnvVarIsOverridden ()
434434 {
435- putenv ('TEST_ENV_VAR_OVERRIDEN =original_value ' );
435+ putenv ('TEST_ENV_VAR_OVERRIDDEN =original_value ' );
436436
437437 $ dotenv = (new Dotenv ())->usePutenv ();
438- $ dotenv ->populate (['TEST_ENV_VAR_OVERRIDEN ' => 'new_value ' ], true );
438+ $ dotenv ->populate (['TEST_ENV_VAR_OVERRIDDEN ' => 'new_value ' ], true );
439439
440- $ this ->assertSame ('new_value ' , getenv ('TEST_ENV_VAR_OVERRIDEN ' ));
441- $ this ->assertSame ('new_value ' , $ _ENV ['TEST_ENV_VAR_OVERRIDEN ' ]);
442- $ this ->assertSame ('new_value ' , $ _SERVER ['TEST_ENV_VAR_OVERRIDEN ' ]);
440+ $ this ->assertSame ('new_value ' , getenv ('TEST_ENV_VAR_OVERRIDDEN ' ));
441+ $ this ->assertSame ('new_value ' , $ _ENV ['TEST_ENV_VAR_OVERRIDDEN ' ]);
442+ $ this ->assertSame ('new_value ' , $ _SERVER ['TEST_ENV_VAR_OVERRIDDEN ' ]);
443443 }
444444
445445 public function testMemorizingLoadedVarsNamesInSpecialVar ()
You can’t perform that action at this time.
0 commit comments