Skip to content

Commit

Permalink
missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
tipogi committed Jan 23, 2025
1 parent ae6d9d7 commit a5ef85b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/models/user/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ mod tests {

user_details.put_to_graph().await?;
user_details
.put_index_json(vec![user_id].as_slice(), None)
.put_index_json(vec![user_id].as_slice(), None, None)
.await?;

// Call `put_to_index` with the same `UserDetails` object
Expand Down
2 changes: 1 addition & 1 deletion tests/service/tags/wot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const USER_C: &str = "cuimec4ngawamq8wa6fjzki6boxmwqcm11x6g7ontufrjwgdaxqo";
#[tokio::test]
async fn test_wot_user_tags_endpoints() -> Result<(), DynError> {
let _ = clear_wot_tags_cache().await;

// Make sure, we still not index the WoT tags requesting the taggers
let path = format!(
"/v0/user/{}/taggers/{}?viewer_id={}&depth=2",
Expand Down

0 comments on commit a5ef85b

Please sign in to comment.