Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
chore: ran cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmemorygrinder committed Jan 5, 2024
1 parent 41c7033 commit 4dacdc8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ impl Request for GetTestsPositionsRequest {
type Params = GetTestsPositionsParams;
type Result = GetTestsPositionsResponse;
const METHOD: &'static str = "osmium/getTestsPositions";
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use get_tests_positions::{GetTestsPositionsParams, GetTestsPositionsResponse, TestContract, Test};
use get_tests_positions::{GetTestsPositionsParams, GetTestsPositionsResponse, Test, TestContract};
use osmium_libs_solidity_ast_extractor::retriever::retrieve_functions_nodes;
use osmium_libs_solidity_ast_extractor::File;
use osmium_libs_solidity_ast_extractor::{
Expand Down Expand Up @@ -71,12 +71,10 @@ impl Backend {
Some(name) => name,
None => continue,
};
tests.push(
Test {
name: name.as_string(),
range: range_from_spanned(name),
}
);
tests.push(Test {
name: name.as_string(),
range: range_from_spanned(name),
});
}
res.push(TestContract {
name: contract.name.as_string(),
Expand Down

0 comments on commit 4dacdc8

Please sign in to comment.