mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
REFACTOR: Removed reduntant commas.
This commit is contained in:
@@ -39,21 +39,21 @@ namespace DiscImageChef.Tests.Filesystems
|
||||
[TestFixture]
|
||||
public class FAT16_Atari
|
||||
{
|
||||
readonly string[] testfiles = {"tos_1.04.vdi.lz", "tos_1.04_small.vdi.lz",};
|
||||
readonly string[] testfiles = {"tos_1.04.vdi.lz", "tos_1.04_small.vdi.lz"};
|
||||
|
||||
readonly ulong[] sectors = {81920, 16384,};
|
||||
readonly ulong[] sectors = {81920, 16384};
|
||||
|
||||
readonly uint[] sectorsize = {512, 512,};
|
||||
readonly uint[] sectorsize = {512, 512};
|
||||
|
||||
readonly long[] clusters = {10239, 8191,};
|
||||
readonly long[] clusters = {10239, 8191};
|
||||
|
||||
readonly int[] clustersize = {4096, 1024,};
|
||||
readonly int[] clustersize = {4096, 1024};
|
||||
|
||||
readonly string[] volumename = {null, null,};
|
||||
readonly string[] volumename = {null, null};
|
||||
|
||||
readonly string[] volumeserial = {"BA9831", "2019E1",};
|
||||
readonly string[] volumeserial = {"BA9831", "2019E1"};
|
||||
|
||||
readonly string[] oemid = {null, null,};
|
||||
readonly string[] oemid = {null, null};
|
||||
|
||||
[Test]
|
||||
public void Test()
|
||||
|
||||
Reference in New Issue
Block a user