Skip to content

Commit

Permalink
fix(tests): fix product_edit_name put response code
Browse files Browse the repository at this point in the history
  • Loading branch information
flo-ride committed Jan 20, 2025
1 parent f707d14 commit 824270a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/product_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ async fn product_edit_name() {
}))
.add_cookie(cookies[0].clone())
.await;
response.assert_status(StatusCode::CREATED);
response.assert_status_ok();

let response = server.get(&format!("/product/{id}")).await;
response.assert_status_ok();
Expand Down

0 comments on commit 824270a

Please sign in to comment.