File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
test/pubg-dotnet.Tests/Matches Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1- version : 1.7 .0.{build}
1+ version : 1.8 .0.{build}
22image : Visual Studio 2017
33skip_tags : true
44
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public class PubgMatch : PubgShardedEntity
2525 public PubgMatchStats Stats { get ; set ; }
2626
2727 [ JsonProperty ]
28- public PubgGameMode GameMode { get ; set ; }
28+ public string GameMode { get ; set ; }
2929
3030 [ JsonProperty ]
3131 public string PatchVersion { get ; set ; }
Original file line number Diff line number Diff line change 33 <PropertyGroup >
44 <Description >Sync and Async client library for communicating with the Pubg Developer API supporting .net standard 2.0</Description >
55 <AssemblyTitle >Pubg.Net</AssemblyTitle >
6- <Version >1.7 .0</Version >
6+ <Version >1.8 .0</Version >
77 <Authors >Gavin Power</Authors >
88 <TargetFramework >netstandard2.0;net45</TargetFramework >
99 <AssemblyName >Pubg.Net</AssemblyName >
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ public void Can_Retrieve_Match_ForPC()
2222
2323 match . ShardId . Should ( ) . Equals ( region . Serialize ( ) ) ;
2424 match . Rosters . Should ( ) . NotBeNull ( ) ;
25+ match . GameMode . Should ( ) . NotBeNullOrWhiteSpace ( ) ;
2526
2627 Assert . All ( match . Rosters , r => r . Stats . Rank . Should ( ) . BeGreaterThan ( 0 ) ) ;
2728 match . Rosters . Should ( ) . ContainSingle ( x => x . Won == true ) ;
You can’t perform that action at this time.
0 commit comments