Delete unused variable (#14)

This commit is contained in:
Patrick Stevens
2025-06-22 23:29:53 +01:00
committed by GitHub
parent 34a2b460b9
commit 75899d5668

View File

@@ -23,8 +23,6 @@ type Mode =
/// <param name="applyChanges">When running the tests, instead of throwing an exception on failure, update the snapshot.</param>
/// <param name="sourceOverride">Override the file path and line numbers reported in snapshots, so that your tests can be fully stable even on failure. (You almost certainly don't want to set this.)</param>
type ExpectBuilder (mode : Mode) =
member private this.Mode = Unchecked.defaultof<Mode>
new (sourceOverride : string * int) = ExpectBuilder (Mode.AssertMockingSource sourceOverride)
new (update : bool)