File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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 ]
You can’t perform that action at this time.
0 commit comments