Skip to content

Commit bc3316a

Browse files
committed
Add CHANGELOG entry for #31
1 parent 4557028 commit bc3316a

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.4.4
2+
3+
- Properly handle fixture failures in Boost.Test.
4+
Thanks @fj128 for the PR.
5+
16
# 0.4.3
27

38
- Use XML in CAPS since beginning at Boost 1.61 the parameter value is case sensitive (#29).

tests/test_pytest_cpp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def test_boost_fixture_setup_error(exes):
140140
failures = facade.run_test(exes.get('boost_fixture_setup_error'), '<unused>')
141141
assert len(failures) == 1
142142

143-
[fail1] = failures
143+
fail1 = failures[0]
144144
colors = ('red', 'bold')
145145
assert fail1.get_lines() == [
146146
('Test setup error: std::runtime_error: This is a global fixture init failure', colors)]

0 commit comments

Comments
 (0)