Adjusted parameters.

This commit is contained in:
2017-07-25 02:45:11 +01:00
parent 9a5d52caab
commit 106d5bead0
6 changed files with 37 additions and 13 deletions

View File

@@ -63,13 +63,17 @@ namespace DiscImageChef.Tests.Filesystems
};
readonly long[] clusters = {
1000,
511055,
};
readonly int[] clustersize = {
1024,
};
readonly string[] types = {
"Minix 3 v2",
};
[Test]
public void Test()
{
@@ -98,7 +102,7 @@ namespace DiscImageChef.Tests.Filesystems
fs.GetInformation(image, partitions[part], out string information);
Assert.AreEqual(clusters[i], fs.XmlFSType.Clusters, testfiles[i]);
Assert.AreEqual(clustersize[i], fs.XmlFSType.ClusterSize, testfiles[i]);
Assert.AreEqual("Minix V2", fs.XmlFSType.Type, testfiles[i]);
Assert.AreEqual(types[i], fs.XmlFSType.Type, testfiles[i]);
}
}
}