Update LoginTest

pull/608/head
Daniel Supernault 2018-11-28 22:11:07 -07:00
rodzic 3afef810da
commit 5d91fb2051
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -25,7 +25,10 @@ class LoginTest extends TestCase
$response->assertSuccessful()
->assertSee('Register a new account');
} else {
$this->assertTrue(true);
$response = $this->get('register');
$response->assertSuccessful()
->assertSee('Registration is closed');
}
}
}