summaryrefslogtreecommitdiffstats
path: root/src/actions/get.rs
diff options
context:
space:
mode:
authorVincent Breitmoser <look@my.amazin.horse>2019-01-17 12:38:43 +0100
committerVincent Breitmoser <look@my.amazin.horse>2019-01-17 12:38:43 +0100
commit24578e416a4573dc2d9a45ae985d2862e7eb0416 (patch)
tree6eeee13cfee63e901c8c0da9208339c8b406da3c /src/actions/get.rs
parentbb59e0595d7a452e928deaa9852d1d3a9e6ef254 (diff)
get/calendars: don't depend on filesystem order
Diffstat (limited to 'src/actions/get.rs')
-rw-r--r--src/actions/get.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions/get.rs b/src/actions/get.rs
index 3f3962c..e9b367c 100644
--- a/src/actions/get.rs
+++ b/src/actions/get.rs
@@ -27,6 +27,6 @@ mod tests {
action_get(&["calendars".to_string()]).unwrap();
- assert_eq!("second\nsecond/second_sub\nfirst\n", testutils::test_stdout_clear());
+ assert_eq!("first\nsecond\nsecond/second_sub\n", testutils::test_stdout_clear());
}
}