From eb477f3e801b8e531c7ccef94f7f9e715f2ca3dd Mon Sep 17 00:00:00 2001 From: Daniele Tricoli Date: Fri, 25 Jun 2021 21:01:23 +0200 Subject: [PATCH] Use fetch method to handle the default os to test --- tests/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Vagrantfile b/tests/Vagrantfile index 0da94a0..7e4a58b 100644 --- a/tests/Vagrantfile +++ b/tests/Vagrantfile @@ -1,6 +1,6 @@ # Default to buster, but just set env variable to, for example, # "debian/bullseye64" to run test against bullseye. -OS_TO_TEST = ENV["OS_TO_TEST"] || "debian/buster64" +OS_TO_TEST = ENV.fetch("OS_TO_TEST", "debian/buster64") Vagrant.configure("2") do |config| config.vm.box = OS_TO_TEST