Skip to content

Commit

Permalink
format issue resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
AnuragNagpure committed Sep 23, 2024
1 parent 5cd6df5 commit 1f8486b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,8 @@ public async Task GetOwnCompanyServiceAccountsDataAsync_CheckInternalUserType(IE
result.Should().NotBeNull();
result.Content.Should().HaveCount(5);
result.Content.Should().Contain(x => x.CompanyServiceAccountKindId == CompanyServiceAccountKindId.INTERNAL);
A.CallTo(() => _serviceAccountRepository.GetOwnCompanyServiceAccountsUntracked(ValidCompanyId, null, null, A<IEnumerable<UserStatusId>>.That.IsSameSequenceAs(expectedStatusIds)))
.MustHaveHappenedOnceExactly();
}

[Theory]
Expand Down Expand Up @@ -563,6 +565,8 @@ public async Task GetOwnCompanyServiceAccountsDataAsync_CheckExternalUserType(IE
result.Should().NotBeNull();
result.Content.Should().HaveCount(5);
result.Content.Should().Contain(x => x.CompanyServiceAccountKindId == CompanyServiceAccountKindId.EXTERNAL);
A.CallTo(() => _serviceAccountRepository.GetOwnCompanyServiceAccountsUntracked(ValidCompanyId, null, null, A<IEnumerable<UserStatusId>>.That.IsSameSequenceAs(expectedStatusIds)))
.MustHaveHappenedOnceExactly();
}

#endregion
Expand Down

0 comments on commit 1f8486b

Please sign in to comment.