summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDoug Tangren <d.tangren@gmail.com>2021-01-10 02:11:35 -0500
committerGitHub <noreply@github.com>2021-01-10 02:11:35 -0500
commit03cc8c075f86f1bd9e2c4e29872a0e8b9072c7f0 (patch)
treeb624695c438ccf04dcb7a9b52a7517aa7ee0c82b /src
parent1a0b5a9b7710f4d17d975c46e3e44bb9cb4c0837 (diff)
update gh actions ci and fix ci lint errors (#244)
* update gh actions ci and fix ci lint errors * trigger also on master for now
Diffstat (limited to 'src')
-rw-r--r--src/builder.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/builder.rs b/src/builder.rs
index eba3536..312b499 100644
--- a/src/builder.rs
+++ b/src/builder.rs
@@ -858,8 +858,9 @@ impl ContainerOptionsBuilder {
&mut self,
envs: E,
) -> &mut Self
- where S: AsRef<str> + Serialize,
- E: AsRef<[S]> + Serialize
+ where
+ S: AsRef<str> + Serialize,
+ E: AsRef<[S]> + Serialize,
{
self.params.insert("Env", json!(envs));
self
@@ -1707,9 +1708,7 @@ mod tests {
.map(|s| String::from(*s))
.collect();
- let options = ContainerOptionsBuilder::new("test_image")
- .env(&env)
- .build();
+ let options = ContainerOptionsBuilder::new("test_image").env(&env).build();
assert_eq!(
r#"{"Env":["foo","bar","baz"],"HostConfig":{},"Image":"test_image"}"#,