From ec064ff967ce6c111327b656a1ea91dbb92e74e0 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Thu, 11 Sep 2025 07:49:55 +0100 Subject: [PATCH] Fix dev test for postgresql version --- test/integration/dev/inspec/postgresql_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/dev/inspec/postgresql_spec.rb b/test/integration/dev/inspec/postgresql_spec.rb index 4c5872e63..25e144bd2 100644 --- a/test/integration/dev/inspec/postgresql_spec.rb +++ b/test/integration/dev/inspec/postgresql_spec.rb @@ -1,8 +1,8 @@ -describe package("postgresql-15") do +describe package("postgresql-17") do it { should be_installed } end -describe service("postgresql@15-main") do +describe service("postgresql@17-main") do it { should be_enabled } it { should be_running } end -- 2.39.5