From a6a911d2ed133683afa9c369393f59aa92995b3f Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 27 Jan 2015 10:00:07 -0800 Subject: [PATCH] We changed the way build-dep is specified in the module; also change it in the tests --- test/integration/roles/test_apt/tasks/apt-builddep.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/roles/test_apt/tasks/apt-builddep.yml b/test/integration/roles/test_apt/tasks/apt-builddep.yml index 8ed9f7e352..979bdd7323 100644 --- a/test/integration/roles/test_apt/tasks/apt-builddep.yml +++ b/test/integration/roles/test_apt/tasks/apt-builddep.yml @@ -31,7 +31,7 @@ # install build-dep for netcat - name: install netcat build-dep with apt - apt: pkg=netcat build_dep=yes + apt: pkg=netcat state=build-dep register: apt_result tags: ['test_apt_builddep'] @@ -56,7 +56,7 @@ # ensure running build-dep again doesn't yield changes - name: install netcat build-dep with apt again - apt: pkg=netcat build_dep=yes + apt: pkg=netcat state=build-dep register: apt_result tags: ['test_apt_builddep']