Skip to content

Commit

Permalink
Changes target of MockNode deref
Browse files Browse the repository at this point in the history
  • Loading branch information
grarco committed Sep 6, 2024
1 parent 80edaf1 commit bfe39a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/node/src/shell/testing/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ pub struct InnerMockNode {
pub struct MockNode(pub Arc<InnerMockNode>);

impl Deref for MockNode {
type Target = Arc<InnerMockNode>;
type Target = InnerMockNode;

fn deref(&self) -> &Self::Target {
&self.0
Expand Down

0 comments on commit bfe39a8

Please sign in to comment.