Skip to content

Commit 187025e

Browse files
committed
Fixes #101
1 parent bad4571 commit 187025e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

YantraJS.Core.Tests/ClrObjects/DisposableTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ public void FieldAccess()
8080
JSValue guidTypeValue = ClrType.From(typeof(Guid));
8181
c["guid"] = guidTypeValue;
8282
string result = c.Eval("guid.empty.toString()").ToString();
83+
Assert.AreEqual("00000000-0000-0000-0000-000000000000", result);
8384
}
8485

8586
// [TestMethod]

YantraJS.Core/Core/Clr/ClrType.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
using System.ComponentModel;
2020
using YantraJS.Expressions;
2121
using YantraJS.Generator;
22+
using YantraJS.Core.Core.Clr;
2223

2324
namespace YantraJS.Core.Clr
2425
{

0 commit comments

Comments
 (0)