aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/completion_functional_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/completion_functional_test.rs')
-rw-r--r--crates/shirabe/tests/completion_functional_test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/tests/completion_functional_test.rs b/crates/shirabe/tests/completion_functional_test.rs
index 6bbe955a..1193b5d1 100644
--- a/crates/shirabe/tests/completion_functional_test.rs
+++ b/crates/shirabe/tests/completion_functional_test.rs
@@ -44,7 +44,7 @@ fn assert_complete(input: &str, expected_suggestions: Option<&[&str]>) {
let mut input: Vec<&str> = input.split(' ').collect();
let command_name = input.remove(0);
// PHP: $this->getApplication()->get($commandName)
- let application = ApplicationHandle::new("Composer".to_string(), "".to_string()).unwrap();
+ let application = ApplicationHandle::new("Shirabe".to_string(), "".to_string()).unwrap();
let base = application.__base_application();
let command = {
let mut app_ref = base.borrow_mut();