mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Removed reduntant commas.
This commit is contained in:
@@ -41,25 +41,25 @@ namespace DiscImageChef.Tests.Filesystems
|
||||
readonly string[] testfiles =
|
||||
{
|
||||
"coherentunix_4.2.10_dsdd.img.lz", "coherentunix_4.2.10_dshd.img.lz", "coherentunix_4.2.10_mf2dd.img.lz",
|
||||
"coherentunix_4.2.10_mf2hd.img.lz",
|
||||
"coherentunix_4.2.10_mf2hd.img.lz"
|
||||
};
|
||||
|
||||
readonly MediaType[] mediatypes =
|
||||
{MediaType.DOS_525_DS_DD_9, MediaType.DOS_525_HD, MediaType.DOS_35_DS_DD_9, MediaType.DOS_35_HD,};
|
||||
{MediaType.DOS_525_DS_DD_9, MediaType.DOS_525_HD, MediaType.DOS_35_DS_DD_9, MediaType.DOS_35_HD};
|
||||
|
||||
readonly ulong[] sectors = {720, 2400, 1440, 2880,};
|
||||
readonly ulong[] sectors = {720, 2400, 1440, 2880};
|
||||
|
||||
readonly uint[] sectorsize = {512, 512, 512, 512,};
|
||||
readonly uint[] sectorsize = {512, 512, 512, 512};
|
||||
|
||||
readonly long[] clusters = {720, 2400, 1440, 2880,};
|
||||
readonly long[] clusters = {720, 2400, 1440, 2880};
|
||||
|
||||
readonly int[] clustersize = {512, 512, 512, 512,};
|
||||
readonly int[] clustersize = {512, 512, 512, 512};
|
||||
|
||||
readonly string[] volumename = {"noname", "noname", "noname", "noname",};
|
||||
readonly string[] volumename = {"noname", "noname", "noname", "noname"};
|
||||
|
||||
readonly string[] volumeserial = {null, null, null, null, null,};
|
||||
readonly string[] volumeserial = {null, null, null, null, null};
|
||||
|
||||
readonly string[] type = {"Coherent fs", "Coherent fs", "Coherent fs", "Coherent fs",};
|
||||
readonly string[] type = {"Coherent fs", "Coherent fs", "Coherent fs", "Coherent fs"};
|
||||
|
||||
[Test]
|
||||
public void Test()
|
||||
|
||||
Reference in New Issue
Block a user