Browse Source

fix: compile error

Akeit0 7 months ago
parent
commit
3b655f32c9
1 changed files with 2 additions and 4 deletions
  1. 2 4
      tests/Lua.Tests/Helpers/NotImplementedExceptionFileSystemBase.cs

+ 2 - 4
tests/Lua.Tests/Helpers/NotImplementedExceptionFileSystemBase.cs

@@ -35,12 +35,10 @@ namespace Lua.Tests.Helpers
         {
             throw new NotImplementedException();
         }
-        
-        public virtual ILuaIOStream OpenTempStream ()
+
+        public ILuaIOStream OpenTempFileStream()
         {
             throw new NotImplementedException();
         }
-        
-        
     }
 }