Skip to content

Commit 4c1bc0a

Browse files
committed
clippy
1 parent 6c39223 commit 4c1bc0a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/llm/src/migration.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ mod tests {
175175
// Helper to create a mock preprocessed request
176176
fn create_mock_request(max_tokens: u32) -> PreprocessedRequest {
177177
PreprocessedRequest {
178+
model: "mock".to_string(),
178179
token_ids: vec![1, 2, 3],
179180
batch_token_ids: None,
180181
stop_conditions: StopConditions {

lib/llm/src/mocker/engine.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,7 @@ mod integration_tests {
633633

634634
// Create test requests for both DP workers
635635
let create_request = |tokens: Vec<TokenIdType>, dp_rank: u32| PreprocessedRequest {
636+
model: "mock".to_string(),
636637
token_ids: tokens,
637638
batch_token_ids: None,
638639
stop_conditions: StopConditions {

0 commit comments

Comments
 (0)