Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Dec 7, 2021
1 parent bddc616 commit 0f94816
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ mod tests {

fn get_method_call(method: String, params: jsonrpc_core::Params) -> MethodCall {
MethodCall {
method: method,
method,
params,
id: jsonrpc_core::Id::Num(1),
jsonrpc: None,
Expand Down Expand Up @@ -211,7 +211,7 @@ mod tests {
]);
let expected_result_params = Params::Array(vec![
Value::String("serialized_transfer".to_owned()),
Value::String("some_signature".to_owned()).to_owned(),
Value::String("some_signature".to_owned()),
Value::Null,
json!({ "ip": IP }),
]);
Expand Down

0 comments on commit 0f94816

Please sign in to comment.