summaryrefslogtreecommitdiffstats
path: root/SendGrid/Tests/TestJsonUtils.cs
diff options
context:
space:
mode:
authorCJ Buchmann <cj.buchmann@sendgrid.com>2012-01-12 19:24:30 -0800
committerCJ Buchmann <cj.buchmann@sendgrid.com>2012-01-12 19:24:30 -0800
commit936101e040074244fe6be9d5a48832a657405424 (patch)
tree0c1419d80537a6060b5ec9e2bd0797dcf5366f6c /SendGrid/Tests/TestJsonUtils.cs
parent149f8c4ddb933f91fa32f6216d3fe78ae0636d0e (diff)
downloadsendgrid-csharp-936101e040074244fe6be9d5a48832a657405424.zip
sendgrid-csharp-936101e040074244fe6be9d5a48832a657405424.tar.gz
sendgrid-csharp-936101e040074244fe6be9d5a48832a657405424.tar.bz2
Got All parts of the REST api working, except file attachments.
Diffstat (limited to 'SendGrid/Tests/TestJsonUtils.cs')
-rwxr-xr-xSendGrid/Tests/TestJsonUtils.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/SendGrid/Tests/TestJsonUtils.cs b/SendGrid/Tests/TestJsonUtils.cs
index b8f4aae..fee990d 100755
--- a/SendGrid/Tests/TestJsonUtils.cs
+++ b/SendGrid/Tests/TestJsonUtils.cs
@@ -10,8 +10,8 @@ namespace Tests
[Test]
public void TestSerialize()
{
- Assert.AreEqual("1", JsonUtils.Serialize(1));
- Assert.AreEqual("\"\\\"foo\\\"\"", JsonUtils.Serialize("\"foo\""));
+ Assert.AreEqual("1", Utils.Serialize(1));
+ Assert.AreEqual("\"\\\"foo\\\"\"", Utils.Serialize("\"foo\""));
}
}
}