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 | 3e3285a98e09cb7563e70849de976dc15f1cfa57 (patch) | |
tree | da560ec886241a45dafb56ebcc35eb6226ec004e /SendGrid/Tests/TestJsonUtils.cs | |
parent | 45c5d8c68adf922ebe3f9c9a22244f0e2a951cf5 (diff) | |
parent | 909a506ec9b244c69c1824e04c23247fc881dcb1 (diff) | |
download | sendgrid-csharp-3e3285a98e09cb7563e70849de976dc15f1cfa57.zip sendgrid-csharp-3e3285a98e09cb7563e70849de976dc15f1cfa57.tar.gz sendgrid-csharp-3e3285a98e09cb7563e70849de976dc15f1cfa57.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);
}
}
}
|