From e85b79b357f328f3515e98c851979fe88feed93a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Wed, 17 Jun 2020 13:44:31 +0300 Subject: [PATCH] fixed account create test --- tests/Feature/Banking/AccountsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Banking/AccountsTest.php b/tests/Feature/Banking/AccountsTest.php index 67c2cc965..34ae53172 100644 --- a/tests/Feature/Banking/AccountsTest.php +++ b/tests/Feature/Banking/AccountsTest.php @@ -27,7 +27,7 @@ class AccountsTest extends FeatureTestCase public function testItShouldCreateAccount() { $this->loginAs() - ->post(route('accounts.index'), $this->getRequest()) + ->post(route('accounts.store'), $this->getRequest()) ->assertStatus(200); $this->assertFlashLevel('success');