Skip to content

Commit 3689a68

Browse files
authored
Suppress FS3261 error (#1259)
1 parent b133c9d commit 3689a68

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/authoring/Framework/HtmlAssertions.fs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@ open System.Diagnostics
99
open System.IO
1010
open AngleSharp.Diffing
1111
open AngleSharp.Diffing.Core
12-
open AngleSharp.Dom
1312
open AngleSharp.Html
1413
open AngleSharp.Html.Parser
15-
open DiffPlex.DiffBuilder
16-
open DiffPlex.DiffBuilder.Model
1714
open JetBrains.Annotations
18-
open Swensen.Unquote
1915
open Xunit.Sdk
2016

17+
#nowarn 3261 // TODO: Remove this and fix it. Adding this to unblock the code for now.
18+
2119
[<AutoOpen>]
2220
module HtmlAssertions =
2321

@@ -90,7 +88,7 @@ actual: {actual}
9088
match querySelector with
9189
| Some q -> document.QuerySelector q
9290
| None -> document.Body
93-
91+
9492
let links = element.QuerySelectorAll("a")
9593
links
9694
|> Seq.iter(fun l ->

0 commit comments

Comments
 (0)