Skip to content

Commit

Permalink
Fixed logical fuck-ups 🥲
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibyx committed Apr 26, 2023
1 parent 6097f8a commit ce95774
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

## 1.8.0 : TBD
## 1.8.0 : 2023-04-26

- **Added**: Status code validation
- **Added**: Ignored properties in diff
- **Fixed**: Broader exception handling in the test execution (should prevent zombie stacking)

## 1.7.4 : 2023-04-05

Expand Down
2 changes: 1 addition & 1 deletion apps/core/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def run(self):

s.close()
record.response = json.dumps(
{key: response[key] for key in response if key in (scenario.ignored_properties or [])},
{key: response[key] for key in response if key not in (scenario.ignored_properties or [])},
sort_keys=True, indent=4
)
valid_response = json.dumps(scenario.response, sort_keys=True, indent=4)
Expand Down

0 comments on commit ce95774

Please sign in to comment.