Skip to content

Commit

Permalink
Update src/core/src/collection.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Luiz Irber <[email protected]>
  • Loading branch information
ctb and luizirber authored Nov 13, 2024
1 parent 2c9a413 commit 8f9e573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/src/collection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ mod test {
// no sigs should remain
assert_eq!(cl.len(), 6);
for (_idx, rec) in cl.iter() {
eprintln!("record scaled is: {}", rec.scaled());
debug!("record scaled is: {}", rec.scaled());

Check failure on line 412 in src/core/src/collection.rs

View workflow job for this annotation

GitHub Actions / test (macos)

cannot find macro `debug` in this scope

Check failure on line 412 in src/core/src/collection.rs

View workflow job for this annotation

GitHub Actions / test (beta)

cannot find macro `debug` in this scope

Check failure on line 412 in src/core/src/collection.rs

View workflow job for this annotation

GitHub Actions / test (stable)

cannot find macro `debug` in this scope

Check failure on line 412 in src/core/src/collection.rs

View workflow job for this annotation

GitHub Actions / test (windows)

cannot find macro `debug` in this scope
let this_sig = cl.sig_from_record(rec).unwrap();
let this_mh = this_sig.minhash().unwrap();
assert_eq!(this_mh.scaled(), 2000);
Expand Down

0 comments on commit 8f9e573

Please sign in to comment.