We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c691c commit 10739b4Copy full SHA for 10739b4
src/NetCoreForce.FunctionalTests/NullValueTests.cs
@@ -28,9 +28,9 @@ public async Task FieldsToNullTest()
28
CreateResponse createResp = await client.CreateRecord<SfAccount>(SfAccount.SObjectTypeName,
29
new SfAccount()
30
{
31
- Name = "test account",
32
- Description = "test description",
33
- BillingCity = "anytown"
+ Name = "test account " + Guid.NewGuid().ToString(),
+ Description = Guid.NewGuid().ToString(),
+ BillingCity = Guid.NewGuid().ToString()
34
});
35
36
Assert.True(!string.IsNullOrEmpty(createResp.Id), "Failed to create new object");
0 commit comments