Skip to content

Commit 62e81fb

Browse files
committed
Fix RelationTests
1 parent f3374f6 commit 62e81fb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Parse.Tests/RelationTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ public async Task UpdateUserRelationAsync_ThrowsException_WhenUserIsNull()
143143
public async Task UpdateUserRelationAsync_ThrowsException_WhenRelationFieldIsNull()
144144
{
145145
var user = new ParseUser() { Username = "TestUser", Password = "TestPass", Services = Client.Services };
146-
await user.SignUpAsync();
147146

148147
var relatedObjectsToAdd = new List<ParseObject>
149148
{
@@ -168,8 +167,6 @@ public async Task DeleteUserRelationAsync_ThrowsException_WhenUserIsNull()
168167
public async Task DeleteUserRelationAsync_ThrowsException_WhenRelationFieldIsNull()
169168
{
170169
var user = new ParseUser() { Username = "TestUser", Password = "TestPass", Services = Client.Services };
171-
await user.SignUpAsync();
172-
173170
await Assert.ThrowsExceptionAsync<ArgumentException>(() => UserManagement.DeleteUserRelationAsync(user, null));
174171
}
175172
[TestMethod]

0 commit comments

Comments
 (0)