revive test func

master
Bel LaPointe 2024-05-23 15:37:50 -04:00
parent 7129723442
commit e90cf02664
1 changed files with 7 additions and 1 deletions

View File

@ -248,13 +248,19 @@ impl Task {
}
}
fn set(&mut self, k: String, v: String) {
self.0.insert(
serde_yaml::Value::String(k),
serde_yaml::Value::String(v),
);
}
fn set_value(&mut self, k: String, v: serde_yaml::Value) {
self.0.insert(
serde_yaml::Value::String(k),
v
);
}
}
#[cfg(test)]