Skip to content

Commit c8d97d2

Browse files
authored
Change 0UL to 0L for MetroHash Config Tests
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 9a10ebe commit c8d97d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

HashifyNet.UnitTests/Algorithms/MetroHash/MetroHashConfig_Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public void MetroHashConfig_Defaults_HaventChanged()
3838
{
3939
var metroHashConfig = new MetroHashConfig();
4040

41-
Assert.Equal(0UL, metroHashConfig.Seed);
41+
Assert.Equal(0L, metroHashConfig.Seed);
4242
}
4343

4444
[Fact]
@@ -56,4 +56,4 @@ public void MetroHashConfig_Clone_Works()
5656
Assert.Equal(metroHashConfig.Seed, metroHashConfigClone.Seed);
5757
}
5858
}
59-
}
59+
}

0 commit comments

Comments
 (0)