diff --git a/src/PlaywrightSharp.Nunit/TestExpectations/TestExpectations.local.json b/src/PlaywrightSharp.Nunit/TestExpectations/TestExpectations.local.json
index 42a60d767..d4cc8f922 100644
--- a/src/PlaywrightSharp.Nunit/TestExpectations/TestExpectations.local.json
+++ b/src/PlaywrightSharp.Nunit/TestExpectations/TestExpectations.local.json
@@ -161,12 +161,6 @@
"parameters": ["headful"],
"expectations": ["FAIL"]
},
- {
- "testIdPattern": "[elementhandle-misc.spec.ts] *",
- "platforms": ["darwin", "linux", "win32"],
- "parameters": ["headful"],
- "expectations": ["FAIL"]
- },
{
"testIdPattern": "[elementhandle-owner-frame.spec.ts] *",
"platforms": ["darwin", "linux", "win32"],
diff --git a/src/PlaywrightSharp.Tests/ElementHandleMiscTests.cs b/src/PlaywrightSharp.Tests/ElementHandleMiscTests.cs
index 90b812c9d..e6ed49378 100644
--- a/src/PlaywrightSharp.Tests/ElementHandleMiscTests.cs
+++ b/src/PlaywrightSharp.Tests/ElementHandleMiscTests.cs
@@ -63,7 +63,7 @@ public async Task ShouldCheckTheBox()
[Test, Timeout(TestConstants.DefaultTestTimeout)]
public async Task ShouldUncheckTheBox()
{
- await Page.SetContentAsync("");
+ await Page.SetContentAsync("");
var input = await Page.QuerySelectorAsync("input");
await input.UncheckAsync();
Assert.That(await Page.EvaluateAsync("() => checkbox.checked"), Is.False);