We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f8c435 commit c604f3cCopy full SHA for c604f3c
dotnet/test/common/BiDi/Permissions/PermissionsTests.cs
@@ -21,6 +21,15 @@ protected override async Task<BiDi> CreateBiDi(IWebDriver driver)
21
return bidi;
22
}
23
24
+ [TearDown]
25
+ public async Task TearDown()
26
+ {
27
+ if (_connection is not null)
28
29
+ await _connection.DisposeAsync();
30
+ }
31
32
+
33
[Test]
34
public async Task SettingPermissionsTest()
35
{
@@ -51,14 +60,5 @@ public async Task SettingPermissionsTest()
51
60
52
61
Assert.That(after.Result, Is.EqualTo(new StringRemoteValue("denied")));
53
62
54
-
55
- [TearDown]
56
- public async Task TearDown()
57
- {
58
- if (_connection is not null)
59
- await _connection.DisposeAsync();
- }
63
64
0 commit comments