Skip to content

Commit

Permalink
rpm: omit useless !centos?(os) guard
Browse files Browse the repository at this point in the history
In the past versions, CentOS 8 Stream should be excluded,
but there is no such a exception. Instead, it is harmful that
serverspec test case is not executed. so just replace it.

Signed-off-by: Kentaro Hayashi <[email protected]>
  • Loading branch information
kenhys committed Jul 29, 2024
1 parent 88a98fb commit bc994eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serverspec/kafka/confluent.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require_relative "../spec_helper"
require "rdkafka"

if ["redhat", "amazon"].include?(os[:family])
if ["redhat", "amazon", "debian"].include?(os[:family])
describe "rdkafka" do
it "can receive message via Rdkafka client" do
config = {
Expand Down

0 comments on commit bc994eb

Please sign in to comment.