summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-09-24 09:51:08 +0300
committerLars Wirzenius <liw@liw.fi>2019-09-24 09:51:08 +0300
commit3635c241275cbacc6c11073c7c205abc8ada8a26 (patch)
tree2e5cd6d1c67b56868147e803d3eb893ca427b9e1 /src
parent804c418bbfba696020957f5f22aa30660302b744 (diff)
downloadroadmap-3635c241275cbacc6c11073c7c205abc8ada8a26.tar.gz
Fix: unit test to test what now happens
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 91938b4..f345882 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -247,7 +247,7 @@ mod tests {
fn new_step() {
let step = Step::new("myname", "my label");
assert_eq!(step.name(), "myname");
- assert_eq!(step.status(), "goal");
+ assert_eq!(step.status(), "");
assert_eq!(step.label(), "my label");
assert_eq!(step.dependencies().count(), 0);
}