Skip to content

Commit

Permalink
finally one copy which is working
Browse files Browse the repository at this point in the history
  • Loading branch information
harrydevnull committed Feb 10, 2017
1 parent 180270d commit 8dd4864
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/create_insert_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ fn read_from_user_table() {
println!("read_from_user_table");
let ctx = TestContext::new();
let mut session = ctx.client.start(Compression::None).unwrap();
let select_query = QueryBuilder::new("SELECT user_name ,password,gender,session_token, state\
let select_query = QueryBuilder::new("SELECT user_name ,password,gender,session_token, state
FROM user_keyspace.users")
.finalize();

Expand Down Expand Up @@ -207,7 +207,7 @@ fn read_from_user_table() {
assert_eq!(users[0].user_name, "harry");
assert_eq!(users[0].password, "pwd");
assert_eq!(users[0].gender, "male");
assert_eq!(users[0].state, "fl");
assert_eq!(users[0].state, "FL");
}
}
Err(err) => println!("{:?}", err),
Expand Down

0 comments on commit 8dd4864

Please sign in to comment.