mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix ambiguity
This commit is contained in:
@@ -7,6 +7,7 @@ using Aaru.CommonTypes.Interfaces;
|
||||
using Aaru.CommonTypes.Structs;
|
||||
using Aaru.Core;
|
||||
using NUnit.Framework;
|
||||
using FileAttributes = Aaru.CommonTypes.Structs.FileAttributes;
|
||||
|
||||
namespace Aaru.Tests.Issues;
|
||||
|
||||
@@ -68,9 +69,9 @@ public abstract class FsExtractIssueTest
|
||||
});
|
||||
}
|
||||
|
||||
var filesystemFound = false;
|
||||
bool filesystemFound = false;
|
||||
|
||||
for(var i = 0; i < partitions.Count; i++)
|
||||
for(int i = 0; i < partitions.Count; i++)
|
||||
{
|
||||
Core.Filesystems.Identify(imageFormat, out List<string> idPlugins, partitions[i]);
|
||||
|
||||
@@ -171,7 +172,7 @@ public abstract class FsExtractIssueTest
|
||||
}
|
||||
}
|
||||
|
||||
var buffer = new byte[stat.Length];
|
||||
byte[] buffer = new byte[stat.Length];
|
||||
ErrorNumber ret = fs.OpenFile(path + "/" + entry, out IFileNode fileNode);
|
||||
|
||||
Assert.That(ret,
|
||||
|
||||
Reference in New Issue
Block a user