mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix naming style.
This commit is contained in:
@@ -7,7 +7,7 @@ using NUnit.Framework;
|
||||
[TestFixture]
|
||||
public class ExtendedCSD
|
||||
{
|
||||
readonly byte[][] ecsd =
|
||||
readonly byte[][] _ecsd =
|
||||
{
|
||||
new byte[]
|
||||
{
|
||||
@@ -43,7 +43,7 @@ public class ExtendedCSD
|
||||
}
|
||||
};
|
||||
|
||||
readonly Aaru.Decoders.MMC.ExtendedCSD[] decoded =
|
||||
readonly Aaru.Decoders.MMC.ExtendedCSD[] _decoded =
|
||||
{
|
||||
new()
|
||||
{
|
||||
@@ -212,11 +212,11 @@ public class ExtendedCSD
|
||||
[Test]
|
||||
public void Test()
|
||||
{
|
||||
for(var i = 0; i < ecsd.Length; i++)
|
||||
for(var i = 0; i < _ecsd.Length; i++)
|
||||
{
|
||||
Aaru.Decoders.MMC.ExtendedCSD csd = Decoders.DecodeExtendedCSD(ecsd[i]);
|
||||
Aaru.Decoders.MMC.ExtendedCSD csd = Decoders.DecodeExtendedCSD(_ecsd[i]);
|
||||
Assert.IsNotNull(csd, $"Not decoded - {i}");
|
||||
csd.Should().BeEquivalentTo(decoded[i]);
|
||||
csd.Should().BeEquivalentTo(_decoded[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user