From d3f994445b3eb65fbc5c53ad3c5ed9ffe1ee296b Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sat, 9 Dec 2017 21:53:14 +0000 Subject: [PATCH] Corrected number of arguments on MMC devices tests. --- DiscImageChef.Tests.Devices/SCSI/MMC.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DiscImageChef.Tests.Devices/SCSI/MMC.cs b/DiscImageChef.Tests.Devices/SCSI/MMC.cs index 540e38f0..b7de85a1 100644 --- a/DiscImageChef.Tests.Devices/SCSI/MMC.cs +++ b/DiscImageChef.Tests.Devices/SCSI/MMC.cs @@ -1359,7 +1359,7 @@ namespace DiscImageChef.Tests.Devices.SCSI return; case 1: DicConsole.WriteLine("Media type"); - DicConsole.WriteLine("Available values: {0} {1} {2}", MmcDiscStructureMediaType.DVD, MmcDiscStructureMediaType.BD); + DicConsole.WriteLine("Available values: {0} {1}", MmcDiscStructureMediaType.DVD, MmcDiscStructureMediaType.BD); DicConsole.Write("Choose?: "); strDev = System.Console.ReadLine(); if(!System.Enum.TryParse(strDev, true, out mediaType)) @@ -1388,7 +1388,7 @@ namespace DiscImageChef.Tests.Devices.SCSI } DicConsole.WriteLine("\t{0} {1} {2} {3}", MmcDiscStructureFormat.AACSVolId, MmcDiscStructureFormat.AACSMediaSerial, MmcDiscStructureFormat.AACSMediaId, MmcDiscStructureFormat.AACSMKB); DicConsole.WriteLine("\t{0} {1} {2} {3}", MmcDiscStructureFormat.AACSDataKeys, MmcDiscStructureFormat.AACSLBAExtents, MmcDiscStructureFormat.AACSMKBCPRM, MmcDiscStructureFormat.RecognizedFormatLayers); - DicConsole.WriteLine("\t{0} {1} {2} {3}", MmcDiscStructureFormat.WriteProtectionStatus, MmcDiscStructureFormat.CapabilityList); + DicConsole.WriteLine("\t{0} {1}", MmcDiscStructureFormat.WriteProtectionStatus, MmcDiscStructureFormat.CapabilityList); DicConsole.Write("Choose?: "); strDev = System.Console.ReadLine(); if(!System.Enum.TryParse(strDev, true, out format))