Skip to content

Commit b904b04

Browse files
committed
Updated xunit and Microsoft.NET.Test.Sdk NuGet packages
1 parent 7cbb563 commit b904b04

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<MicrosoftExtensionsVersion>8.0.*</MicrosoftExtensionsVersion>
66
<AspNetCoreVersion>8.0.*</AspNetCoreVersion>
77
<FsToolkitVersion>4.15.*</FsToolkitVersion>
8-
<XUnitVersion>2.9.0</XUnitVersion>
8+
<XUnitVersion>2.9.2</XUnitVersion>
99
<FAKEVersion>6.*</FAKEVersion>
1010
</PropertyGroup>
1111
<ItemGroup Label="Common">
@@ -52,7 +52,7 @@
5252
<ItemGroup Label="Test platform">
5353
<PackageReference Update="BenchmarkDotNet" Version="0.14.*" />
5454
<PackageReference Update="BenchmarkDotNet.Annotations" Version="0.*" />
55-
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.11.0" />
55+
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.11.1" />
5656
<PackageReference Update="Microsoft.TestPlatform.TestHost" Version="17.7.*" />
5757
<PackageReference Update="Microsoft.TestPlatform.ObjectModel" Version="17.7.*" />
5858
<PackageReference Update="xunit" Version="$(XUnitVersion)" />

samples/chat-app/server/Schema.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module MapFrom =
3838
FakePersistence.ChatMembers.Values
3939
|> Seq.filter (fun m -> x.Members |> List.contains m.MemberId)
4040
|> Seq.map (chatMemberInDb_To_ChatMember membersToGetDetailsFrom)
41-
|> List.ofSeq
41+
|> Seq.toList
4242
}
4343

4444
let chatRoomInDb_To_ChatRoomForMember
@@ -58,7 +58,7 @@ module MapFrom =
5858
m.MemberId <> chatMember.MemberId
5959
&& x.Members |> List.contains m.MemberId)
6060
|> Seq.map (chatMemberInDb_To_ChatMember membersToGetDetailsFrom)
61-
|> List.ofSeq
61+
|> Seq.toList
6262
}
6363

6464
let organizationInDb_To_Organization (x : Organization_In_Db) : Organization =
@@ -73,7 +73,7 @@ module MapFrom =
7373
FakePersistence.ChatRooms.Values
7474
|> Seq.filter (fun c -> x.ChatRooms |> List.contains c.Id)
7575
|> Seq.map (chatRoomInDb_To_ChatRoom members)
76-
|> List.ofSeq
76+
|> Seq.toList
7777
}
7878

7979
let organizationInDb_To_OrganizationForMember (memberId : MemberId) (x : Organization_In_Db) : OrganizationForMember option =

src/FSharp.Data.GraphQL.Client.DesignTime/FSharp.Data.GraphQL.Client.DesignTime.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<ItemGroup>
1717
<PackageReference Update="FSharp.Core" VersionOverride="$(FSharpCoreVersion)">
1818
<PrivateAssets>all</PrivateAssets>
19+
<!-- This excludes FSharp.Core.xml and FSharp.Core.resources.dll while referencing the right FSharp.Core.dll version -->
1920
<ExcludeAssets>contentFiles;runtime</ExcludeAssets>
2021
</PackageReference>
2122
<PackageReference Include="FSharp.TypeProviders.SDK" VersionOverride="8.0.2" />

tests/FSharp.Data.GraphQL.Tests/SchemaTests.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ open FSharp.Data.GraphQL.Types
99
open FSharp.Data.GraphQL.Execution
1010

1111
[<Fact>]
12-
let ``Object type should be able to merge fields with matching signatures from different interfaces`` () =
12+
let ``Object type must be able to merge fields with matching signatures from different interfaces`` () =
1313
let MovableType = Define.Interface ("Movable", [ Define.Field ("speed", IntType) ])
1414
let Movable2Type =
1515
Define.Interface ("Movable2", [ Define.Field ("speed", IntType); Define.Field ("acceleration", IntType) ])
@@ -38,7 +38,7 @@ let ``Object type should be able to merge fields with matching signatures from d
3838
|> List.map snd)
3939

4040
[<Fact>]
41-
let ``Schema config should be able to override default error handling`` () =
41+
let ``Schema config must be able to override default error handling`` () =
4242
let mutable idx = 0
4343
let conf = {
4444
SchemaConfig.Default with

0 commit comments

Comments
 (0)