Skip to content

Commit

Permalink
Make sure the tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
afsalthaj committed Jul 1, 2024
1 parent cf1c554 commit 4e8edc0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion golem-worker-service-base/src/http/http_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ mod tests {
),
(
"function_name".to_string(),
TypeAnnotatedValue::Str(worker_request.function.to_string()),
TypeAnnotatedValue::Str(worker_request.function.fqn.to_string()),
),
(
"function_params".to_string(),
Expand Down
4 changes: 2 additions & 2 deletions golem-worker-service-base/src/service/worker/default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ use golem_common::model::{
ScanCursor, Timestamp, WorkerFilter, WorkerStatus,
};
use golem_service_base::model::{
FunctionParameter, FunctionResult, GolemErrorUnknown,
PromiseId, ResourceLimits, WorkerId, WorkerMetadata,
FunctionParameter, FunctionResult, GolemErrorUnknown, PromiseId, ResourceLimits, WorkerId,
WorkerMetadata,
};
use golem_service_base::typechecker::{TypeCheckIn, TypeCheckOut};
use golem_service_base::{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mod refined_worker_response;
pub mod to_response;
mod worker_request_executor;

use crate::evaluator::{Function};
use crate::evaluator::Function;
pub use refined_worker_response::*;
pub use worker_request_executor::*;

Expand Down

0 comments on commit 4e8edc0

Please sign in to comment.