diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-09-27 20:18:50 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-09-28 01:00:09 -0400 |
| commit | 1458ff7be5d883444943090cb636e9343487d03e (patch) | |
| tree | adb410ce9245dc2a1562fc370f2398cab35e7507 /src/channel/routes/test/list.rs | |
| parent | eff129bc1f29bcb1b2b9d10c6b49ab886edc83d6 (diff) | |
Send created events when channels are added.
Diffstat (limited to 'src/channel/routes/test/list.rs')
| -rw-r--r-- | src/channel/routes/test/list.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/channel/routes/test/list.rs b/src/channel/routes/test/list.rs index f7f7b44..bc94024 100644 --- a/src/channel/routes/test/list.rs +++ b/src/channel/routes/test/list.rs @@ -26,7 +26,7 @@ async fn one_channel() { let app = fixtures::scratch_app().await; let viewer = fixtures::login::create(&app).await; - let channel = fixtures::channel::create(&app).await; + let channel = fixtures::channel::create(&app, &fixtures::now()).await; // Call the endpoint @@ -46,8 +46,8 @@ async fn multiple_channels() { let app = fixtures::scratch_app().await; let viewer = fixtures::login::create(&app).await; let channels = vec![ - fixtures::channel::create(&app).await, - fixtures::channel::create(&app).await, + fixtures::channel::create(&app, &fixtures::now()).await, + fixtures::channel::create(&app, &fixtures::now()).await, ]; // Call the endpoint |
