Skip to content

Commit b63deeb

Browse files
committed
Mistakenly updated Assert.Equal(1...) to Assert.Empty() instead of Assert.Single()
1 parent faf9c35 commit b63deeb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/Microsoft.AspNet.SessionState.SessionStateModuleAsync.Test/InProcSessionStateStoreAsync.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,9 @@ public void Set_IndexedItem_SetsItemAndDirty()
360360
_collection[0] = newValue;
361361

362362
// Assert
363-
Assert.Empty(_collection);
363+
Assert.Single(_collection);
364364
Assert.True(_collection.Dirty);
365+
Assert.Equal(newValue, _collection[key]);
365366
}
366367

367368
[Fact]

0 commit comments

Comments
 (0)