From bfe1dfe6d7971df1c03ac1e4068e86010f333d45 Mon Sep 17 00:00:00 2001 From: gclaramunt Date: Fri, 7 Dec 2012 10:15:28 -0200 Subject: [PATCH] Update test client account --- .../dotnet/PrecogClient/PrecogTests/Client/TestStore.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/precog/dotnet/PrecogClient/PrecogTests/Client/TestStore.cs b/precog/dotnet/PrecogClient/PrecogTests/Client/TestStore.cs index e3001c7..0a78d2a 100644 --- a/precog/dotnet/PrecogClient/PrecogTests/Client/TestStore.cs +++ b/precog/dotnet/PrecogClient/PrecogTests/Client/TestStore.cs @@ -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; @@ -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); @@ -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); }