File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Hexa.NET.ImGui.Widgets.Tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11namespace Hexa . NET . ImGui . Widgets . Tests
22{
3- using Hexa . NET . ImGui . Widgets . Dialogs ;
3+ using Hexa . NET . ImGui . Widgets . IO ;
44
55 [ TestFixture ]
66 public unsafe class FileUtilitiesTests
@@ -12,7 +12,7 @@ public void EnumerateEntriesOSXTest()
1212 // Arrange
1313 string testDirectory = AppDomain . CurrentDomain . BaseDirectory ;
1414
15- foreach ( var entry in FileUtilities . EnumerateEntriesOSX ( testDirectory , "*" , SearchOption . TopDirectoryOnly ) )
15+ foreach ( var entry in FileUtils . OSX . EnumerateEntries ( testDirectory , "*" , SearchOption . TopDirectoryOnly ) )
1616 {
1717 var path = entry . Path . ToString ( ) ;
1818 string fileName = Path . GetFileName ( path ) ;
@@ -34,7 +34,7 @@ public void EnumerateEntriesWinTest()
3434 // Arrange
3535 string testDirectory = AppDomain . CurrentDomain . BaseDirectory ;
3636
37- foreach ( var entry in FileUtilities . EnumerateEntriesWin ( testDirectory , "*" , SearchOption . TopDirectoryOnly ) )
37+ foreach ( var entry in FileUtils . Win . EnumerateEntries ( testDirectory , "*" , SearchOption . TopDirectoryOnly ) )
3838 {
3939 var path = entry . Path . ToString ( ) ;
4040 string fileName = Path . GetFileName ( path ) ;
You can’t perform that action at this time.
0 commit comments