Browse Source

fix: improve exception message formatting in LuaTests

Akeit0 6 months ago
parent
commit
52b5f0c366
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/Lua.Tests/LuaTests.cs

+ 1 - 1
tests/Lua.Tests/LuaTests.cs

@@ -45,7 +45,7 @@ public class LuaTests
             }
             }
 
 
             var line = luaTraceback.FirstLine;
             var line = luaTraceback.FirstLine;
-            throw new Exception($"{path}:line {line}\n{e.InnerException}\n {e}");
+            throw new Exception($"{path}:{line} \n{e.InnerException}\n {e}");
         }
         }
     }
     }
 }
 }