@@ -72,6 +72,7 @@ public function testGetUserSummaryNoGameHistoryByName(): void
7272 'TotalRanked ' => 0 ,
7373 'LastGameID ' => null ,
7474 'RichPresenceMsg ' => null ,
75+ 'RichPresenceMsgDate ' => null ,
7576 'RecentlyPlayedCount ' => 0 ,
7677 'RecentlyPlayed ' => [],
7778 ]);
@@ -104,6 +105,7 @@ public function testGetUserSummaryNoGameHistoryByUlid(): void
104105 'TotalRanked ' => 0 ,
105106 'LastGameID ' => null ,
106107 'RichPresenceMsg ' => null ,
108+ 'RichPresenceMsgDate ' => null ,
107109 'RecentlyPlayedCount ' => 0 ,
108110 'RecentlyPlayed ' => [],
109111 ]);
@@ -221,6 +223,7 @@ public function testGetUserSummary(): void
221223 'TotalRanked ' => 2 , // $this->user and $user
222224 'LastGameID ' => $ game ->id ,
223225 'RichPresenceMsg ' => 'Playing ' . $ game ->title ,
226+ 'RichPresenceMsgDate ' => Carbon::now ()->__toString (),
224227 'RecentlyPlayedCount ' => 0 ,
225228 'RecentlyPlayed ' => [],
226229 'LastActivity ' => [
@@ -275,6 +278,7 @@ public function testGetUserSummary(): void
275278 'ReleasedAtGranularity ' => $ game ->released_at_granularity ->value ,
276279 ],
277280 'RichPresenceMsg ' => 'Playing ' . $ game ->title ,
281+ 'RichPresenceMsgDate ' => Carbon::now ()->__toString (),
278282 'RecentlyPlayedCount ' => 2 ,
279283 'RecentlyPlayed ' => [
280284 [
@@ -388,6 +392,7 @@ public function testGetUserSummary(): void
388392 'ReleasedAtGranularity ' => $ game ->released_at_granularity ->value ,
389393 ],
390394 'RichPresenceMsg ' => 'Playing ' . $ game ->title ,
395+ 'RichPresenceMsgDate ' => Carbon::now ()->__toString (),
391396 'RecentlyPlayedCount ' => 1 ,
392397 'RecentlyPlayed ' => [
393398 [
0 commit comments