Browse Source

fix: compile error

Akeit0 7 months ago
parent
commit
3b655f32c9

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

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