Skip to content

Commit 9c345f0

Browse files
committed
[hashtableseparatedchainingtest] - minor refact
1 parent bfac7d7 commit 9c345f0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

UnitTest/DataStructuresTests/HashTableSeparateChainingTest.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ public static class HashTableSeparateChainingTest
99
[Fact]
1010
public static void DoTest()
1111
{
12+
// TEST ADD KEY-VALUE PAIRS
1213
var studentsMarks = new ChainedHashTable<string, int>
1314
{
1415
{"Konstantinos", 124},
@@ -35,10 +36,6 @@ public static void DoTest()
3536
{"Test888888888", 3210}
3637
};
3738

38-
//
39-
// TEST ADD KEY-VALUE PAIRS
40-
41-
//
4239
// TEST FETCH KEY-VALUE
4340
var mark = studentsMarks["Ahmad"];
4441
Assert.True(mark == 924);

0 commit comments

Comments
 (0)