From 33b152cd92bcf8f286b983d0a084ca651c202117 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Tue, 5 Oct 2010 15:36:02 -0400 Subject: [PATCH] fix a test --- spec/performance_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/performance_spec.rb b/spec/performance_spec.rb index f4b35c3..5a97e03 100644 --- a/spec/performance_spec.rb +++ b/spec/performance_spec.rb @@ -7,10 +7,10 @@ describe Apache::Config, "performance settings" do it "should set keepalive" do apache.activate_keepalive({ :timeout => 10, :requests => 100 }) - apache.to_a.should == [ + apache.to_a.sort.should == [ 'KeepAlive On', - 'MaxKeepAliveRequests 100', - 'KeepAliveTimeout 10' + 'KeepAliveTimeout 10', + 'MaxKeepAliveRequests 100' ] end end