Skip to content

Commit 5a66197

Browse files
authored
Update unit-testing-mstest-migration-from-v1-to-v3.md
1 parent 1fac0b5 commit 5a66197

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/core/testing/unit-testing-mstest-migration-from-v1-to-v3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ Choose the option that best suits your project setup. Both methods ensure your p
9696

9797
### 3. Update Your Code
9898

99-
- **Assert.AreEqual/AreNotEqual or Assert.AreSame/AreNotSame (with object)**
100-
If one of these assertions causes errors, we recommend verifying that the types being compared are compatible. If they are, consider adding explicit generic typing to resolve the issue.
99+
- **Assert.AreEqual/AreNotEqual or Assert.AreSame/AreNotSame (with object)**
100+
If one of these assertions causes errors, we recommend verifying that the types being compared are compatible. If they are, consider adding explicit generic typing to resolve the issue.
101101

102-
- **using generics**:
102+
- **using generics**:
103103

104104
```csharp
105105
Assert.AreEqual<customObject>(expectedObject, actualObject);

0 commit comments

Comments
 (0)