diff options
author | CJ Buchmann <cj.buchmann@sendgrid.com> | 2012-01-12 19:24:30 -0800 |
---|---|---|
committer | CJ Buchmann <cj.buchmann@sendgrid.com> | 2012-01-12 19:24:30 -0800 |
commit | 936101e040074244fe6be9d5a48832a657405424 (patch) | |
tree | 0c1419d80537a6060b5ec9e2bd0797dcf5366f6c /SendGrid/Tests/TestJsonUtils.cs | |
parent | 149f8c4ddb933f91fa32f6216d3fe78ae0636d0e (diff) | |
download | sendgrid-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-x | SendGrid/Tests/TestJsonUtils.cs | 4 |
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\""));
}
}
}
|