Skip to content

Commit de501f9

Browse files
authored
Fixing missed closing bracket (#34)
* hotfix 13.1
1 parent d9ba3cc commit de501f9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.MD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.13.1
2+
- fixed a missed bracket
3+
14
## 0.13.0
25
- changed an approach to distribute tags as attributes for suite and test entities
36

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,8 @@ class RPFormatter extends Formatter {
243243

244244
formatTags(tags) {
245245
return tags.map(tag => '<code>' + tag.name + '</code>').join('')
246-
246+
}
247+
247248
prepareTags(tags) {
248249
return tags.map(tag => tag.name)
249250
}

0 commit comments

Comments
 (0)