Skip to content

Commit 06e6136

Browse files
committed
Remove net461 from test targets
1 parent 7640fb0 commit 06e6136

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

tests/GraphBLAS-sharp.Tests/GraphBLAS-sharp.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFrameworks>netcoreapp3.1;net461</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
55
</PropertyGroup>
66
<ItemGroup>
77
<ProjectReference Include="../../src/GraphBLAS-sharp/GraphBLAS-sharp.fsproj" />

tests/GraphBLAS-sharp.Tests/Helpers.fs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -276,14 +276,14 @@ module Generators =
276276
|> genericSparseGenerator false Arb.generate<bool>
277277
|> Arb.fromGen
278278

279-
type ArrayOfDistinctKeys() =
280-
// Stack overflow.
281-
static member ArrayOfDistinctKeysArb() =
282-
gen {
283-
let! array = Arb.generate<(uint64 * int)[]>
284-
return Array.distinctBy (fun (key, _) -> key) array
285-
}
286-
|> Arb.fromGen
279+
// type ArrayOfDistinctKeys() =
280+
// // Stack overflow.
281+
// static member ArrayOfDistinctKeysArb() =
282+
// gen {
283+
// let! array = Arb.generate<(uint64 * int)[]>
284+
// return Array.distinctBy (fun (key, _) -> key) array
285+
// }
286+
// |> Arb.fromGen
287287

288288
module Utils =
289289
let defaultConfig =

0 commit comments

Comments
 (0)