Skip to content

Commit

Permalink
Merging cluster tests for orgs api
Browse files Browse the repository at this point in the history
  • Loading branch information
AsabuHere committed Sep 24, 2024
1 parent e62303a commit ccaf0a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Twilio.Test/ClusterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public void TestFetchingOrgsAccounts()
accountList = Twilio.Rest.PreviewIam.Organizations.AccountResource.Read(pathOrganizationSid: orgsSid);

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

View workflow job for this annotation

GitHub Actions / Test

The type or namespace name 'Organizations' does not exist in the namespace 'Twilio.Rest.PreviewIam' (are you missing an assembly reference?)

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

View workflow job for this annotation

GitHub Actions / Test

The type or namespace name 'Organizations' does not exist in the namespace 'Twilio.Rest.PreviewIam' (are you missing an assembly reference?)

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

View workflow job for this annotation

GitHub Actions / Test

The type or namespace name 'Organizations' does not exist in the namespace 'Twilio.Rest.PreviewIam' (are you missing an assembly reference?)

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

View workflow job for this annotation

GitHub Actions / Test

The type or namespace name 'Organizations' does not exist in the namespace 'Twilio.Rest.PreviewIam' (are you missing an assembly reference?)
Assert.IsNotNull(accountList.ElementAt(0).FriendlyName);

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

Check failure on line 141 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 141 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 141 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 141 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);

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

View workflow job for this annotation

GitHub Actions / Test

'UserResource' does not contain a definition for 'Id' and no accessible extension method 'Id' accepting a first argument of type 'UserResource' could be found (are you missing a using directive or an assembly reference?)

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

View workflow job for this annotation

GitHub Actions / Test

'UserResource' does not contain a definition for 'Id' and no accessible extension method 'Id' accepting a first argument of type 'UserResource' could be found (are you missing a using directive or an assembly reference?)

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

View workflow job for this annotation

GitHub Actions / Test

'UserResource' does not contain a definition for 'Id' and no accessible extension method 'Id' accepting a first argument of type 'UserResource' could be found (are you missing a using directive or an assembly reference?)

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

View workflow job for this annotation

GitHub Actions / Test

'UserResource' does not contain a definition for 'Id' and no accessible extension method 'Id' accepting a first argument of type 'UserResource' could be found (are you missing a using directive or an assembly reference?)

}
Expand Down

0 comments on commit ccaf0a5

Please sign in to comment.