diff --git a/CHANGELOG.md b/CHANGELOG.md index b171096..847e3ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.2] - 2023-11-01 + +### Fixed + +- verbose "Plan: " statement bug fix + ## [1.2.0] - 2023-10-27 ### Changed diff --git a/src/tap-arc.js b/src/tap-arc.js index 4f99dbb..b7353bc 100644 --- a/src/tap-arc.js +++ b/src/tap-arc.js @@ -196,7 +196,7 @@ export default function createParser (input, output, options = {}) { P(`${_.strong('TAP version:')} ${version}`) }) reader.on('plan', ({ start, end }) => { - P(`${_.strong('Plan:')} start=${start} end=${end}}`) + P(`${_.strong('Plan:')} start=${start} end=${end}`) }) }