Return a token with the name of two guests

This commit is contained in:
Oliver Davies 2025-05-29 23:49:17 +01:00
parent 487190cb12
commit bc3f3dd3e5
2 changed files with 9 additions and 0 deletions

View file

@ -44,6 +44,7 @@ class PodcastTokenTest extends BrowserTestBase {
public function podcastNodeProvider(): \Generator {
return [
yield 'Single guest' => [['Matt Glaman'], 'Matt Glaman'],
yield 'Two guests' => [['Emma Horrell', 'Luke McCormick'], 'Emma Horrell and Luke McCormick'],
];
}