Skip to content

fix: Fixed name mismatch #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed name
  • Loading branch information
Pringled committed May 11, 2025
commit 0ce9d91f3e972c98e752a7b99c000f4c543cf3ec
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/test_encode.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use approx::assert_relative_eq;
use std::fs;
use serde_json::Value;
use model2vec_rust::model::StaticModel;
use model2vec_rs::model::StaticModel;

#[test]
fn test_encode_hello_against_fixture() {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_load.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use approx::assert_relative_eq;
use model2vec_rust::model::StaticModel;
use model2vec_rs::model::StaticModel;

fn encode_hello(path: &str) -> Vec<f32> {
// Helper function to load the model and encode "hello world"
Expand Down