From 0fd232e70d2be9ce845a73745ac98800bcfef9e2 Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 11 May 2020 17:53:24 -0700 Subject: [PATCH] Fixed group functional test (We had changed the minimum to 2 instead of 3) Signed-off-by: snipe --- tests/functional/GroupsCest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/GroupsCest.php b/tests/functional/GroupsCest.php index b24b3c07cc..86b426b2ad 100644 --- a/tests/functional/GroupsCest.php +++ b/tests/functional/GroupsCest.php @@ -39,7 +39,7 @@ class GroupsCest $I->wantTo("Test Validation Fails with short name"); $I->amOnPage(route('groups.create')); $I->seeResponseCodeIs(200); - $I->fillField('name', 't2'); + $I->fillField('name', 't'); $I->click('Save'); $I->seeElement('.alert-danger'); $I->see('The name must be at least 3 characters', '.alert-msg');