Commit 29f60815 authored by Vinicius Jarina's avatar Vinicius Jarina
Browse files

Fixed `TestInexistentExtensionMethods`

parent fe784c20
...@@ -2036,7 +2036,8 @@ namespace NLuaTest ...@@ -2036,7 +2036,8 @@ namespace NLuaTest
sw.Start(); sw.Start();
try try
{ {
lua.DoString(" v:Lengthx() "); for(int i = 0; i < 100; i++)
lua.DoString($" v:Lengthx{i}() ");
} }
catch (Exception e) catch (Exception e)
{ {
...@@ -2048,7 +2049,8 @@ namespace NLuaTest ...@@ -2048,7 +2049,8 @@ namespace NLuaTest
sw.Restart(); sw.Restart();
try try
{ {
lua.DoString(" v:Lengthx() "); for (int i = 0; i < 100; i++)
lua.DoString($" v:Lengthx{i}() ");
} }
catch (Exception e) catch (Exception e)
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment