Skip to content

Commit 5671c45

Browse files
committed
fix formatting
1 parent 2ec4015 commit 5671c45

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/bee/worker.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,11 @@ mod tests {
133133
type Output = u8;
134134
type Error = ();
135135

136-
fn apply_ref(&mut self, input: &Self::Input, _: &Context<Self::Input>) -> RefWorkerResult<Self> {
136+
fn apply_ref(
137+
&mut self,
138+
input: &Self::Input,
139+
_: &Context<Self::Input>,
140+
) -> RefWorkerResult<Self> {
137141
match *input {
138142
0 => Err(ApplyRefError::Retryable(())),
139143
1 => Err(ApplyRefError::Fatal(())),

0 commit comments

Comments
 (0)