mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
feat: update to alpha.17, typed mobile plugin IPC arguments (#676)
Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com>
This commit is contained in:
committed by
GitHub
parent
76cfdc32b4
commit
e438e0a62d
@@ -455,7 +455,7 @@ mod tests {
|
||||
CommandEvent::Stderr(line) => {
|
||||
assert_eq!(
|
||||
String::from_utf8(line).unwrap(),
|
||||
"cat: test/: Is a directory"
|
||||
"cat: test/: Is a directory\n"
|
||||
);
|
||||
}
|
||||
_ => {}
|
||||
@@ -480,7 +480,7 @@ mod tests {
|
||||
CommandEvent::Stderr(line) => {
|
||||
assert_eq!(
|
||||
String::from_utf8(line).unwrap(),
|
||||
"cat: test/: Is a directory"
|
||||
"cat: test/: Is a directory\n"
|
||||
);
|
||||
}
|
||||
_ => {}
|
||||
@@ -511,7 +511,7 @@ mod tests {
|
||||
assert_eq!(String::from_utf8(output.stdout).unwrap(), "");
|
||||
assert_eq!(
|
||||
String::from_utf8(output.stderr).unwrap(),
|
||||
"cat: test/: Is a directory\n"
|
||||
"cat: test/: Is a directory\n\n"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user