diff options
| author | Conrad Ludgate <conradludgate@gmail.com> | 2022-09-11 16:24:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-11 16:24:16 +0100 |
| commit | 702a644f68c687142c9a03b48cf451665ed41b62 (patch) | |
| tree | 5621dc20001662f556532745d800ed5dc3607673 /atuin-client/src/database.rs | |
| parent | Add index for interactive search (#493) (diff) | |
| download | atuin-702a644f68c687142c9a03b48cf451665ed41b62.zip | |
better cursor search (#473)
* improve cursor code
* proper unicode support
* refactor and test
* fmt
* clippy
* move methods to state
* refactor search modules
Diffstat (limited to 'atuin-client/src/database.rs')
| -rw-r--r-- | atuin-client/src/database.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/atuin-client/src/database.rs b/atuin-client/src/database.rs index 7b3ab3be..ba28daf3 100644 --- a/atuin-client/src/database.rs +++ b/atuin-client/src/database.rs @@ -461,7 +461,7 @@ mod test { Some("beep boop".to_string()), Some("booop".to_string()), ); - return db.save(&history).await; + db.save(&history).await } #[tokio::test(flavor = "multi_thread")] |
