Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: tabokie <[email protected]>
  • Loading branch information
tabokie committed Aug 3, 2022
1 parent 6c49f86 commit 240d7bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Format
run: |
make format
git diff --quiet || git diff
git diff --exit-code
- name: Clippy
run: make clippy
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2031,7 +2031,7 @@ mod tests {

let engine = engine.reopen();
assert_eq!(engine.file_count(None), fs.inner.file_count());
let (start, _) = engine.file_span(LogQueue::Append );
let (start, _) = engine.file_span(LogQueue::Append);
assert_eq!(
fs.append_metadata.lock().unwrap().iter().next().unwrap(),
&start
Expand Down

0 comments on commit 240d7bc

Please sign in to comment.