qa_server 7.9.1 → 7.9.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff06d85cd1c9fe8ce8b330c850856ebd43ec8859704158b9b845cf10d748a484
4
- data.tar.gz: e6c72b49415833fba261d26603d2683f4dfa45c11f3ca7b4e238cea5080a6e7d
3
+ metadata.gz: 72d52211139ad972c160f1f7f320290945c9d1424d830897cf45d6b034077c8a
4
+ data.tar.gz: 33cb9b58a7db3c21f1a92f500981f2dcdce05e6e4dbac8cacc6cd1ee68109c14
5
5
  SHA512:
6
- metadata.gz: 26a67a95946b201218cb764957ab50d050d13e5a051e51e1cec7a2dd83b69c7f2113f94519ae5597a1d35c79677feddd41f33b5fd24e777848c3ebc9b00524e8
7
- data.tar.gz: 8499863e775be703faac4243a966faf58e66a5098878b1e19f3b95033a752abf7ab824aeab14dc3f7f8cf20a243dbbffd93ca7beccb7dfb09d28e87a263d5d03
6
+ metadata.gz: 34146029b2c72f667a3e587591527b60291691aaa0df77f165d912b65de6ed5589434a7d854fa43fcfbe2226521fd7a147be2263515e8845279974720dff7cb7
7
+ data.tar.gz: ee1158fb8fd498cc48895bd72792542dfc84eb817755e1139315ac0134053df62dce752f2f16d6963be1f8791494977108549a97ce4719ef363ffd071b480b9b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 7.9.2 (2021-06-10)
2
+
3
+ * fix: only check for dogear if status is a Hash
4
+
1
5
  ### 7.9.1 (2021-06-10)
2
6
 
3
7
  * fix compare accuracy fails if either has pending tests
@@ -81,7 +81,7 @@ module QaServer
81
81
 
82
82
  # @return [String] the name of the css style class to use for the status cell based on the status of the scenario test.
83
83
  def status_style_class(status)
84
- return "status-#{status}" if status.is_a? Symbol
84
+ return "status-#{status}" unless status.is_a? Hash
85
85
  status[:pending] ? "status-dogear status-#{status[:status]}" : "status-#{status[:status]}"
86
86
  end
87
87
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module QaServer
3
- VERSION = '7.9.1'
3
+ VERSION = '7.9.2'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qa_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.9.1
4
+ version: 7.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - E. Lynette Rayle