Skip to content

Commit c4c4367

Browse files
committed
Dumbify code to try to catch intermitent error.
1 parent 2d0c08a commit c4c4367

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app/sprinkles/account/tests/Integration/AuthenticatorTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,9 @@ public function testValidateUserAccount(Authenticator $authenticator)
170170
{
171171
$testUser = $this->createTestUser();
172172
$user = $this->invokeMethod($authenticator, 'validateUserAccount', [$testUser->id]);
173-
$this->assertSame($testUser->id, $user->id);
173+
$testUserId = $testUser->id;
174+
$userId = $user->id;
175+
$this->assertSame($testUserId, $userId);
174176
}
175177

176178
/**

0 commit comments

Comments
 (0)