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 c9eafc9 commit a474ff6Copy full SHA for a474ff6
scylla/tests/integration/session/history.rs
@@ -219,7 +219,7 @@ async fn iterator_query_history() {
219
.ddl(format!("CREATE KEYSPACE {ks} WITH REPLICATION = {{'class' : 'NetworkTopologyStrategy', 'replication_factor' : 1}}"))
220
.await
221
.unwrap();
222
- session.use_keyspace(ks, true).await.unwrap();
+ session.use_keyspace(&ks, true).await.unwrap();
223
224
session
225
.ddl("CREATE TABLE t (p int primary key)")
@@ -295,4 +295,6 @@ async fn iterator_query_history() {
295
);
296
297
assert!(displayed_str.starts_with(displayed_prefix),);
298
+
299
+ session.ddl(format!("DROP KEYSPACE {ks}")).await.unwrap();
300
}
0 commit comments