From 624d099bf9b71aabb598b658f60a807268e8dc78 Mon Sep 17 00:00:00 2001 From: kodumbeats Date: Wed, 1 Sep 2021 10:36:01 -0400 Subject: [PATCH] Assert row width exception is thrown --- tests/e2e/Services/Database/DatabaseCustomServerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/Services/Database/DatabaseCustomServerTest.php b/tests/e2e/Services/Database/DatabaseCustomServerTest.php index 2be62f8fa..6c0a50075 100644 --- a/tests/e2e/Services/Database/DatabaseCustomServerTest.php +++ b/tests/e2e/Services/Database/DatabaseCustomServerTest.php @@ -398,8 +398,8 @@ class DatabaseCustomServerTest extends Scope 'required' => true, ]); - // $this->assertEquals(400, $tooWide['headers']['status-code']); - // $this->assertEquals('Attribute limit exceeded', $tooWide['body']['message']); + $this->assertEquals(400, $tooWide['headers']['status-code']); + $this->assertEquals('Attribute limit exceeded', $tooWide['body']['message']); } public function testIndexLimitException()