diff options
author | Eric Becking <eric.becking@sendgrid.com> | 2012-01-11 16:46:21 -0700 |
---|---|---|
committer | Eric Becking <eric.becking@sendgrid.com> | 2012-01-11 16:46:21 -0700 |
commit | 26748c95a5092afbe48195710bce1ed3335ba1ee (patch) | |
tree | b901df80b871512986219af399002a88378278fb /SendGrid/Tests/TestJsonUtils.cs | |
parent | bede6f1b514ad980fc2855dd01c17e690638e0ce (diff) | |
parent | d4c8b545cd8e8aa00134411fd4fe7bf7bea60cfe (diff) | |
download | sendgrid-csharp-26748c95a5092afbe48195710bce1ed3335ba1ee.zip sendgrid-csharp-26748c95a5092afbe48195710bce1ed3335ba1ee.tar.gz sendgrid-csharp-26748c95a5092afbe48195710bce1ed3335ba1ee.tar.bz2 |
Merge branch 'us1882' of github.com:sendgrid/sendgrid-csharp into us1882
Diffstat (limited to 'SendGrid/Tests/TestJsonUtils.cs')
-rwxr-xr-x | SendGrid/Tests/TestJsonUtils.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/SendGrid/Tests/TestJsonUtils.cs b/SendGrid/Tests/TestJsonUtils.cs index b06e153..b8f4aae 100755 --- a/SendGrid/Tests/TestJsonUtils.cs +++ b/SendGrid/Tests/TestJsonUtils.cs @@ -12,11 +12,6 @@ namespace Tests {
Assert.AreEqual("1", JsonUtils.Serialize(1));
Assert.AreEqual("\"\\\"foo\\\"\"", JsonUtils.Serialize("\"foo\""));
-
- var arg = Encoding.UTF8.GetString(Encoding.ASCII.GetBytes("добры дзень"));
- var result = JsonUtils.Serialize(arg);
- System.Console.WriteLine(arg + " => " + result);
- Assert.AreEqual("", result);
}
}
}
|