@@ -36,8 +36,8 @@ discard block |
||
36 | 36 | */ |
37 | 37 | $capsule = new Capsule; |
38 | 38 | $capsule->addConnection([ |
39 | - 'driver' => 'sqlite', |
|
40 | - 'database' => ':memory:', |
|
39 | + 'driver' => 'sqlite', |
|
40 | + 'database' => ':memory:', |
|
41 | 41 | ]); |
42 | 42 | $capsule->setEventDispatcher(new Dispatcher); |
43 | 43 | $capsule->setAsGlobal(); |
@@ -46,8 +46,8 @@ discard block |
||
46 | 46 | $capsule->schema()->dropIfExists('models'); |
47 | 47 | |
48 | 48 | $capsule->schema()->create('models', function (Blueprint $table) { |
49 | - $table->increments('id'); |
|
50 | - $table->string('string'); |
|
51 | - $table->string('email'); |
|
52 | - $table->timestamps(); |
|
49 | + $table->increments('id'); |
|
50 | + $table->string('string'); |
|
51 | + $table->string('email'); |
|
52 | + $table->timestamps(); |
|
53 | 53 | }); |
@@ -46,7 +46,7 @@ |
||
46 | 46 | // ->see('Waddup, y\'all'); |
47 | 47 | // $this->assertTrue(true); |
48 | 48 | $this->call('GET', 'admin')->see('Waddup, y\'all'); |
49 | - // $this->assertFalse($request); |
|
49 | + // $this->assertFalse($request); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | public function test_redirects_to_login_if_user_is_not_authenticated () |