This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 551cfa8 Fix bad test check
551cfa8 is described below
commit 551cfa81e2cd1757a8f3f6f3d503319eff6de7e2
Author: Sebb <[email protected]>
AuthorDate: Sat Oct 17 13:59:31 2020 +0100
Fix bad test check
---
lib/spec/lib/committee_spec.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/spec/lib/committee_spec.rb b/lib/spec/lib/committee_spec.rb
index f574257..c587ffe 100644
--- a/lib/spec/lib/committee_spec.rb
+++ b/lib/spec/lib/committee_spec.rb
@@ -63,14 +63,14 @@ describe ASF::Committee do
res = nil
# Wunderbar.logger = nil; is needed to ensure logging output works as
expected
expect { Wunderbar.logger = nil; res =
ASF::Committee.appendtlpmetadata(input,'httpd','description') }.to
output("_WARN Entry for 'httpd' already exists under :tlps\n").to_stderr
- expect(res).to equal(input)
+ expect(res).to eql(input)
end
it "should fail for 'comdev'" do
res = nil
# Wunderbar.logger = nil; is needed to ensure logging output works as
expected
expect { Wunderbar.logger = nil; res =
ASF::Committee.appendtlpmetadata(input,'comdev','description') }.to
output("_WARN Entry for 'comdev' already exists under :cttees\n").to_stderr
- expect(res).to equal(input)
+ expect(res).to eql(input)
end
pmc = 'a-b-c'