Skip to content

Commit

Permalink
Update ClusterTest.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
AsabuHere authored Sep 25, 2024
1 parent 879462b commit ec6dd4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Twilio.Test/ClusterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ public void TestListParams()
public void TestFetchingOrgsAccounts()
{
Twilio.Base.BearerToken.TokenResourceSet<Twilio.Rest.PreviewIam.Organizations.AccountResource> accountList = null;
accountList = Twilio.Rest.PreviewIam.Organizations.AccountResource.Read(pathOrganizationSid: orgsSid);
accountList = Twilio.Rest.PreviewIam.Organizations.AccountResource.Read(orgsSid);
Assert.IsNotNull(accountList.ElementAt(0).FriendlyName);

var userList = UserResource.Read(pathOrganizationSid: orgsSid);

Check failure on line 142 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The best overload for 'Read' does not have a parameter named 'pathOrganizationSid'

Check failure on line 142 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The best overload for 'Read' does not have a parameter named 'pathOrganizationSid'

Check failure on line 142 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The best overload for 'Read' does not have a parameter named 'pathOrganizationSid'

Check failure on line 142 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The best overload for 'Read' does not have a parameter named 'pathOrganizationSid'
Assert.IsNotNull(userList.ElementAt(0).Id);
Assert.IsNotNull(userList);

}
}
Expand Down

0 comments on commit ec6dd4e

Please sign in to comment.