Skip to content

Commit 0fd327f

Browse files
committed
fix null cast
1 parent e2ef52d commit 0fd327f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing-unit-fs-mocks/Testing.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ type Mocks() =
3232
member this.CallAsync(args: MockCallArgs): Task<obj> =
3333
// We don't use this method in this particular test suite.
3434
// Default to returning whatever we got as input.
35-
Task.FromResult(null :> obj)
35+
Task.FromResult(null)

0 commit comments

Comments
 (0)