From 0dbda70841b319feb30e7e51feb94fab59f131d9 Mon Sep 17 00:00:00 2001 From: Denis Akhiyarov Date: Fri, 9 Feb 2018 23:32:40 -0600 Subject: [PATCH] Update TestExample.cs https://github.com/pythonnet/pythonnet/pull/596#issuecomment-364626728 --- src/embed_tests/TestExample.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/embed_tests/TestExample.cs b/src/embed_tests/TestExample.cs index 0cf795f5d..671f9e33d 100644 --- a/src/embed_tests/TestExample.cs +++ b/src/embed_tests/TestExample.cs @@ -47,7 +47,7 @@ public void TestReadme() dynamic b = np.array(new List { 6, 5, 4 }, Py.kw("dtype", np.int32)); Assert.AreEqual("int32", b.dtype.ToString()); - Assert.AreEqual("[ 6. 10. 12.]", (a * b).ToString()); + Assert.AreEqual("[ 6. 10. 12.]", (a * b).ToString().Replace(" ", " ")); } } }