From aaffc1d6b05adc03323eac97fdb4b1bcc6892fcb Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Tue, 30 Aug 2022 12:35:22 +0500 Subject: [PATCH] Update ResourceSyncingTest.php --- tests/ResourceSyncingTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ResourceSyncingTest.php b/tests/ResourceSyncingTest.php index 2ba80b92..62319f25 100644 --- a/tests/ResourceSyncingTest.php +++ b/tests/ResourceSyncingTest.php @@ -178,7 +178,7 @@ test('creating the resource in tenant database creates it in central database wi expect(CentralUser::first()->password)->toBe('secret'); expect(CentralUser::first()->email)->toBe('john@localhost'); - // Assert the "role" attribute is unsynced and we are using the default values + // Assert the "role" attribute is unsynced and we are using the default value expect(CentralUser::first()->role)->toBe('admin'); }); @@ -268,7 +268,7 @@ test('creating the resource in central database creates it in tenant database wi expect(ResourceUser::first()->password)->toBe('secret'); expect(ResourceUser::first()->email)->toBe('john@localhost'); - // Assert the "role" attribute is unsynced and we are using the default values + // Assert the "role" attribute is unsynced and we are using the default value expect(ResourceUser::first()->role)->toBe('admin'); }); });