Browse Source

Fixing build

Sebastien Ros 9 years ago
parent
commit
cc84dbd1ed
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Jint.Tests/Runtime/EngineTests.cs

+ 1 - 0
Jint.Tests/Runtime/EngineTests.cs

@@ -24,6 +24,7 @@ namespace Jint.Tests.Runtime
             _engine = new Engine()
                 .SetValue("log", new Action<object>(Console.WriteLine))
                 .SetValue("assert", new Action<bool>(Assert.True))
+                .SetValue("equal", new Action<object, object>(Assert.Equal))
                 ;
         }