Skip to content

Commit 7f6857d

Browse files
committed
version 2.4.2
1 parent 25bc809 commit 7f6857d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Write SQL queries in a simple and composable way"
44
documentation = "https://docs.rs/sql_query_builder"
55
repository = "https://github.com/belchior/sql_query_builder"
66
authors = ["Belchior Oliveira <[email protected]>"]
7-
version = "2.4.1"
7+
version = "2.4.2"
88
edition = "2021"
99
rust-version = "1.62"
1010
license = "MIT"

tests/command_delete_spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ mod builder_features {
129129
* [More context](https://github.com/belchior/sql_query_builder/pull/53)
130130
*/
131131
#[test]
132-
fn select_builder_should_impl_send_and_sync() {
132+
fn delete_builder_should_impl_send_and_sync() {
133133
fn assert_impl_sync_send(_builder: impl Sync + Send) {}
134134
assert_impl_sync_send(sql::Delete::new());
135135
}

tests/command_insert_spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ mod builder_features {
129129
* [More context](https://github.com/belchior/sql_query_builder/pull/53)
130130
*/
131131
#[test]
132-
fn select_builder_should_impl_send_and_sync() {
132+
fn insert_builder_should_impl_send_and_sync() {
133133
fn assert_impl_sync_send(_builder: impl Sync + Send) {}
134134
assert_impl_sync_send(sql::Insert::new());
135135
}

tests/command_update_spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ mod builder_features {
138138
* [More context](https://github.com/belchior/sql_query_builder/pull/53)
139139
*/
140140
#[test]
141-
fn select_builder_should_impl_send_and_sync() {
141+
fn update_builder_should_impl_send_and_sync() {
142142
fn assert_impl_sync_send(_builder: impl Sync + Send) {}
143143
assert_impl_sync_send(sql::Update::new());
144144
}

0 commit comments

Comments
 (0)