Skip to content

Commit 98e9cee

Browse files
committed
fix code styling issues
1 parent 82d9fec commit 98e9cee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/settings.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ impl Index {
556556
/// # Example
557557
///
558558
/// ```
559-
/// # use meilisearch_sdk::{client::*, indexes::*, settings::{Settings,PaginationSetting}};
559+
/// # use meilisearch_sdk::{client::*, indexes::*, settings::{Settings, PaginationSetting}};
560560
/// #
561561
/// # let MEILISEARCH_HOST = option_env!("MEILISEARCH_HOST").unwrap_or("http://localhost:7700");
562562
/// # let MEILISEARCH_API_KEY = option_env!("MEILISEARCH_API_KEY").unwrap_or("masterKey");
@@ -1399,12 +1399,12 @@ mod tests {
13991399

14001400
#[meilisearch_test]
14011401
async fn test_get_pagination(index: Index) {
1402-
let res = index.get_pagination().await.unwrap();
1403-
14041402
let pagination = PaginationSetting {
14051403
max_total_hits: 1000,
14061404
};
14071405

1406+
let res = index.get_pagination().await.unwrap();
1407+
14081408
assert_eq!(pagination, res);
14091409
}
14101410

0 commit comments

Comments
 (0)