Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
karolisg committed Mar 29, 2024
1 parent 2ae8635 commit 5299ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dozer-ingestion/postgres/src/schema/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async fn test_connector_view_cannot_be_used() {

let result = schema_helper.get_schemas(&[table_info]).await;
assert!(
result.unwrap().first().is_err(),
result.as_ref().unwrap().first().unwrap().is_err(),
"Result is not an error. Result: {:?}",
result
);
Expand Down

0 comments on commit 5299ab9

Please sign in to comment.