Skip to content

Commit

Permalink
fix: route and access token tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterPtato committed Mar 21, 2024
1 parent d5b74d8 commit b10177f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions svc/api/route/tests/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ mod cdn_suite {
.await
.unwrap();

tokio::time::sleep(std::time::Duration::from_secs(5)).await;

// Test HTML
{
let res = test_cdn_path(&version, "/index.html", |req| {
Expand Down
2 changes: 1 addition & 1 deletion svc/pkg/user/ops/resolve-access-token/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async fn empty(ctx: TestCtx) {
.await
.unwrap();

let name = "foo".to_string();
let name = util::faker::ident();
op!([ctx] user_identity_create {
user_id: user_res.user_id,
identity: Some(backend::user_identity::Identity {
Expand Down

0 comments on commit b10177f

Please sign in to comment.