Skip to content
This repository was archived by the owner on Feb 25, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions precog/dotnet/PrecogClient/PrecogTests/Client/TestStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ public void Setup()

testId = ""+ new Random().Next (0,10000);

AccountInfo res = noKeyClient.CreateAccount("java-test@precog.com", "password");
AccountInfo res = noKeyClient.CreateAccount("test-dotnet@precog.com", "password");
testAccountId = res.accountId;
res = noKeyClient.DescribeAccount("java-test@precog.com", "password", testAccountId);
res = noKeyClient.DescribeAccount("test-dotnet@precog.com", "password", testAccountId);
testApiKey = res.ApiKey;

testPath = "/test" + testId;
Expand Down Expand Up @@ -81,7 +81,7 @@ public void TestStoreAndQuery ()
public void testCreateAccount()
{
PrecogClient noKeyClient = ServiceStack.CreatePrecogClient(SERVICE, null);
AccountInfo res = noKeyClient.CreateAccount("java-test@precog.com", "password");
AccountInfo res = noKeyClient.CreateAccount("test-dotnet@precog.com", "password");
string accountId = res.accountId;
Assert.IsNotNullOrEmpty(accountId);
Assert.AreEqual(testAccountId, accountId);
Expand All @@ -91,7 +91,7 @@ public void testCreateAccount()
public void testDescribeAccount()
{
PrecogClient noKeyClient = ServiceStack.CreatePrecogClient(SERVICE, null);
AccountInfo res = noKeyClient.DescribeAccount("java-test@precog.com", "password", testAccountId);
AccountInfo res = noKeyClient.DescribeAccount("test-dotnet@precog.com", "password", testAccountId);
Assert.AreEqual(testAccountId, res.accountId);
}

Expand Down