Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test names
  • Loading branch information
hrrrrustic authored and eiriktsarpalis committed Nov 22, 2023
commit c1f68373ac53a8296c100dc934bbf841bf1c1235
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void Dictionary_Generic_Constructor_int_IEqualityComparer(int count)
[Theory]
[InlineData(1)]
[InlineData(100)]
public void Stack_CreateWithCapacity_EqualsCapacityProperty(int capacity)
public void Dictionary_CreateWithCapacity_EqualsCapacityProperty(int capacity)
{
Dictionary<TKey, TValue> dict = new Dictionary<TKey, TValue>(capacity);
Assert.Equal(capacity, dict.Capacity);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void HashSet_Generic_Constructor_IEnumerable_IEqualityComparer(Enumerable
[Theory]
[InlineData(1)]
[InlineData(100)]
public void Stack_CreateWithCapacity_EqualsCapacityProperty(int capacity)
public void HashSet_CreateWithCapacity_EqualsCapacityProperty(int capacity)
{
var hashSet = new HashSet<T>(capacity);
Assert.Equal(capacity, hashSet.Capacity);
Expand Down