Skip to content

Commit f8c6fe4

Browse files
committed
Removed some debugging
1 parent b887e21 commit f8c6fe4

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

src/encrypted_table/table_attributes.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ impl TableAttributes {
1616

1717
/// Merge this table attributes with another set of table attributes.
1818
pub(crate) fn merge(mut self, other: Self) -> Self {
19-
println!("Merging table attributes: {:?} with {:?}", self, other);
2019
self.0.extend(other.0);
2120
self
2221
}
@@ -30,10 +29,6 @@ impl TableAttributes {
3029
) {
3130
let name: AttributeName = name.into();
3231
let attr: TableAttribute = value.into();
33-
println!(
34-
"Inserting into table attributes: {:?} with {:?}",
35-
name, attr
36-
);
3732
self.0.insert(name, attr);
3833
}
3934

tests/allprotected_tests.rs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,23 @@ async fn run_test<F: Future<Output = ()>>(mut f: impl FnMut(EncryptedTable) -> F
5656
.await
5757
.expect("Failed to insert Dan");
5858

59-
/*table
60-
.put(User::new("jane@smith.org", "Jane Smith", NaiveDate::from_ymd_opt(1990, 2, 20).unwrap()))
59+
table
60+
.put(User::new(
61+
"jane@smith.org",
62+
"Jane Smith",
63+
NaiveDate::from_ymd_opt(1990, 2, 20).unwrap(),
64+
))
6165
.await
6266
.expect("Failed to insert Jane");
6367

6468
table
65-
.put(User::new("daniel@example.com", "Daniel Johnson", NaiveDate::from_ymd_opt(1980, 3, 30).unwrap()))
69+
.put(User::new(
70+
"daniel@example.com",
71+
"Daniel Johnson",
72+
NaiveDate::from_ymd_opt(1980, 3, 30).unwrap(),
73+
))
6674
.await
67-
.expect("Failed to insert Daniel");*/
75+
.expect("Failed to insert Daniel");
6876

6977
f(table).await;
7078
}

0 commit comments

Comments
 (0)