Skip to content

Commit

Permalink
remove dbg macro in test
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderManich committed Nov 29, 2023
1 parent c7f9c57 commit 8216dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/api/model_logic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ async fn get_model_user_has_no_access_returns_err() {

let res = api.get_model(request).await.unwrap_err();

assert!(dbg!(res.code()) == Code::PermissionDenied);
assert!(res.code() == Code::PermissionDenied);
}

#[tokio::test]
Expand Down

0 comments on commit 8216dff

Please sign in to comment.