Skip to content

Commit 166f778

Browse files
committed
ITT: Minor fixes.
1 parent 1c29c2f commit 166f778

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ $this->emulateProduction();
144144
Emulates that application is working at specified environment:
145145
146146
```php
147-
$this->emulateEnvironment('space');
147+
$this->emulateEnvironment('demo');
148148
```
149149
150150
### ArtisanHelpers

tests/Helpers/ApplicationHelpersTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public function it_can_emulate_production_environment()
2121
/** @test */
2222
public function it_can_emulate_any_environment()
2323
{
24-
$this->emulateEnvironment('space');
24+
$this->emulateEnvironment('demo');
2525

26-
$this->assertEquals('space', $this->app->environment());
26+
$this->assertEquals('demo', $this->app->environment());
2727
}
2828
}

0 commit comments

Comments
 (0)