We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c658f commit 9aefce4Copy full SHA for 9aefce4
src/client.rs
@@ -1146,7 +1146,7 @@ mod tests {
1146
.try_make_index(&client)
1147
.unwrap();
1148
1149
- assert_eq!(index.uid.to_string(), index_uid);
+ assert_eq!(index.uid, index_uid);
1150
index
1151
.delete()
1152
.await?
src/documents.rs
@@ -433,7 +433,7 @@ mod tests {
433
async fn test_generate_index(client: Client) -> Result<(), Error> {
434
let index: Index = MovieClips::generate_index(&client).await.unwrap();
435
436
- assert_eq!(index.uid.to_string(), "movie_clips");
+ assert_eq!(index.uid, "movie_clips");
437
438
439
0 commit comments