Skip to content

Commit 66ec01d

Browse files
committed
Fixed clippy error
1 parent 7dc0744 commit 66ec01d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/common/src/test_support.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pub mod tests {
33
use crate::settings::{AdServer, Prebid, Publisher, Settings, Synthetic};
44

55
pub fn crate_test_settings_str() -> String {
6-
return r#"
6+
r#"
77
[ad_server]
88
ad_partner_url = "https://test-adpartner.com"
99
sync_url = "https://test-adpartner.com/synthetic_id={{synthetic_id}}"
@@ -21,7 +21,7 @@ pub mod tests {
2121
opid_store = "test-opid-store"
2222
secret_key = "test-secret-key"
2323
template = "{{client_ip}}:{{user_agent}}:{{first_party_id}}:{{auth_user_id}}:{{publisher_domain}}:{{accept_language}}"
24-
"#.to_string();
24+
"#.to_string()
2525
}
2626

2727
pub fn create_test_settings() -> Settings {

0 commit comments

Comments
 (0)