We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6dec88 commit 7488777Copy full SHA for 7488777
CHANGELOG.md
@@ -2,11 +2,15 @@
2
3
## [Unreleased][]
4
5
+[Unreleased]: https://github.com/chaostoolkit-incubator/chaostoolkit-datadog/compare/0.1.1...HEAD
6
+
7
### Added
8
9
* Metrics probe `chaosdatadog.metrics.get_metrics_state`
10
-[Unreleased]: https://github.com/chaostoolkit-incubator/chaostoolkit-datadog/compare/0.1.1...HEAD
11
+### Fixed
12
13
+* SLO test
14
15
## [0.1.1][]
16
tests/test_probes.py
@@ -9,6 +9,9 @@
def test_get_slo(rest):
r = MagicMock()
r.getheader.return_value = None
+ r.headers = {
+ "Content-Type": "application/json"
+ }
r.data = json.dumps({}).encode("utf-8")
cl = MagicMock()
17
cl.request.return_value = r
0 commit comments