From 2a2e2d5414d62788a239c29a5a31eaa344fbdd32 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Thu, 21 Nov 2019 13:44:35 -0800 Subject: [PATCH] Update nfs client test for redhat --- test/unit/plugins/guests/redhat/cap/nfs_client_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/plugins/guests/redhat/cap/nfs_client_test.rb b/test/unit/plugins/guests/redhat/cap/nfs_client_test.rb index 8cb557c06..55b121eb3 100644 --- a/test/unit/plugins/guests/redhat/cap/nfs_client_test.rb +++ b/test/unit/plugins/guests/redhat/cap/nfs_client_test.rb @@ -24,7 +24,7 @@ describe "VagrantPlugins::GuestRedHat::Cap:NFSClient" do it "installs nfs client" do cap.nfs_client_install(machine) expect(comm.received_commands[0]).to match(/install nfs-utils/) - expect(comm.received_commands[0]).to match(/\/bin\/systemctl restart rpcbind nfs/) + expect(comm.received_commands[0]).to match(/\/bin\/systemctl restart rpcbind nfs-server/) end end end