File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ # 1.0.2
4
+
5
+ * Updated files to work with latest CI updates
6
+
3
7
# 1.0.1
4
8
5
9
* Fix duplicated "pack" key in rule definition.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ keywords:
6
6
- sensu
7
7
- monitoring
8
8
- alerting
9
- version : 1.0.1
9
+ version : 1.0.2
10
10
python_versions :
11
11
- " 3"
12
12
author : StackStorm, Inc.
Original file line number Diff line number Diff line change 3
3
import mock
4
4
import requests
5
5
import responses
6
- import unittest2
6
+ import unittest
7
7
8
8
# XXX: This file uses a lot of globals and shared state.
9
9
# We should definitely refactor this at some
@@ -30,7 +30,7 @@ def raise_for_status(self):
30
30
raise Exception (self .reason )
31
31
32
32
33
- class SensuHandlerTestCase (unittest2 .TestCase ):
33
+ class SensuHandlerTestCase (unittest .TestCase ):
34
34
35
35
def test_st2_headers_token_auth (self ):
36
36
sensu_handler .IS_API_KEY_AUTH = False
You can’t perform that action at this time.
0 commit comments