summaryrefslogtreecommitdiffstats
path: root/plugins/tedge_apt_plugin
diff options
context:
space:
mode:
authorAlex Solomes <alex.solomes@softwareag.com>2022-02-17 14:48:48 +0000
committerGitHub <noreply@github.com>2022-02-17 14:48:48 +0000
commit41c4d08331c35ebfa54d6c5c7495c95f892b60c1 (patch)
tree4440aec556c45c27bf1d144941e0355ea3eb49df /plugins/tedge_apt_plugin
parent144cc7e21c304419a3e583f0c06bd453b71823da (diff)
parentad4b056df2b344115b2a6ba5d891ca7f927963b3 (diff)
Merge pull request #793 from initard/bugfix/tmppath
renamed download.path to tmp.path in tests
Diffstat (limited to 'plugins/tedge_apt_plugin')
-rw-r--r--plugins/tedge_apt_plugin/tests/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/tedge_apt_plugin/tests/main.rs b/plugins/tedge_apt_plugin/tests/main.rs
index c1fcb5b5..e5a79e02 100644
--- a/plugins/tedge_apt_plugin/tests/main.rs
+++ b/plugins/tedge_apt_plugin/tests/main.rs
@@ -122,21 +122,21 @@ fn install_from_local_file_fail(
// description about the test
#[test_case(
&format!("install {} --file {}", PACKAGE_NAME, PACKAGE_FILE_PATH),
- &format!("The following NEW packages will be installed\n {}", PACKAGE_NAME),
+ PACKAGE_NAME,
0
; "path"
)]
#[serial]
#[test_case(
&format!("install {} --file {} --module-version {}", PACKAGE_NAME, PACKAGE_FILE_PATH, PACKAGE_VERSION),
- &format!("The following NEW packages will be installed\n {}", PACKAGE_NAME),
+ PACKAGE_NAME,
0
; "path with version"
)]
#[serial]
#[test_case(
&format!("install {} --module-version {} --file {}", PACKAGE_NAME, PACKAGE_VERSION, PACKAGE_FILE_PATH),
- &format!("The following NEW packages will be installed\n {}", PACKAGE_NAME),
+ PACKAGE_NAME,
0
; "version with path"
)]