Skip to content

Commit

Permalink
tests(derive/endedness/comput): reimplement tests
Browse files Browse the repository at this point in the history
  • Loading branch information
a-frantz committed Dec 14, 2023
1 parent 1b1117c commit b1e9e86
Show file tree
Hide file tree
Showing 2 changed files with 282 additions and 236 deletions.
2 changes: 1 addition & 1 deletion src/derive/command/endedness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ pub fn derive(args: DeriveEndednessArgs) -> anyhow::Result<()> {
if !found_rgs.contains(&rg) {
found_rgs.insert(Arc::new(rg.clone()));
}
found_rgs.get(&rg).unwrap().clone()
Arc::clone(found_rgs.get(&rg).unwrap())
}
None => Arc::clone(&UNKNOWN_READ_GROUP),
};
Expand Down
Loading

0 comments on commit b1e9e86

Please sign in to comment.