Skip to content

Commit 10739b4

Browse files
committed
test: updated test to avoid duplicate error on create
1 parent d6c691c commit 10739b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/NetCoreForce.FunctionalTests/NullValueTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ public async Task FieldsToNullTest()
2828
CreateResponse createResp = await client.CreateRecord<SfAccount>(SfAccount.SObjectTypeName,
2929
new SfAccount()
3030
{
31-
Name = "test account",
32-
Description = "test description",
33-
BillingCity = "anytown"
31+
Name = "test account " + Guid.NewGuid().ToString(),
32+
Description = Guid.NewGuid().ToString(),
33+
BillingCity = Guid.NewGuid().ToString()
3434
});
3535

3636
Assert.True(!string.IsNullOrEmpty(createResp.Id), "Failed to create new object");

0 commit comments

Comments
 (0)