You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2020/10/17 17:01:25 UTC

[whimsy] branch master updated: Whimsy is not in the test data

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 ad23754  Whimsy is not in the test data
ad23754 is described below

commit ad23754b3aecd28f51baf2e3d44fd866ef756784
Author: Sebb <se...@apache.org>
AuthorDate: Sat Oct 17 18:01:16 2020 +0100

    Whimsy is not in the test data
---
 lib/spec/lib/committee_spec.rb | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/spec/lib/committee_spec.rb b/lib/spec/lib/committee_spec.rb
index 9d8cfa2..7f40d5b 100644
--- a/lib/spec/lib/committee_spec.rb
+++ b/lib/spec/lib/committee_spec.rb
@@ -97,15 +97,15 @@ describe ASF::Committee do
     yyyymm = '2020-10'
     data = File.read cinfoy
     yaml = YAML.safe_load(data, [Symbol])
-    it "should contain Whimsy, but not retired" do
-      para = yaml[:tlps]['whimsy']
+    it "should contain HTTPD, but not retired" do
+      para = yaml[:tlps]['httpd']
       expect(para).not_to eql(nil)
       expect(para[:retired]).to eql(nil)
     end
-    it "should add retired tag to Whimsy" do
-      data = ASF::Committee.record_termination(data, 'whimsy', yyyymm)
+    it "should add retired tag to HTTPD" do
+      data = ASF::Committee.record_termination(data, 'httpd', yyyymm)
       yaml = YAML.safe_load(data, [Symbol])
-      para = yaml[:tlps]['whimsy']
+      para = yaml[:tlps]['httpd']
       expect(para).not_to eql(nil)
       expect(para[:retired]).to eql(yyyymm)
     end