Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frankh committed Aug 20, 2024
1 parent 0185795 commit 07776a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
3 changes: 2 additions & 1 deletion rust/capture/tests/django_compat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ async fn it_matches_django_capture_behaviour() -> anyhow::Result<()> {
);
assert_eq!(
Some(CaptureResponse {
status: CaptureResponseCode::Ok
status: CaptureResponseCode::Ok,
quota_limited: None,
}),
res.json().await
);
Expand Down
5 changes: 0 additions & 5 deletions rust/capture/tests/recordings.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
use std::num::NonZeroU32;
use time::Duration;

use crate::common::*;
use anyhow::Result;
use assert_json_diff::assert_json_include;
use capture::limiters::billing::QuotaResource;
use reqwest::StatusCode;
use serde_json::json;
use uuid::Uuid;
mod common;

#[tokio::test]
Expand Down

0 comments on commit 07776a1

Please sign in to comment.