Skip to content

Commit f4043fe

Browse files
committed
Increase minimum version of python needed for test
1 parent c81236b commit f4043fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rollbar/test/test_rollbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ def _raise():
10351035

10361036
send_payload_httpx.assert_called_once()
10371037

1038-
@unittest.skipUnless(sys.version_info >= (3, 2), 'concurrent.futures support requires Python3.2+')
1038+
@unittest.skipUnless(sys.version_info >= (3, 6), 'assert_called_once support requires Python3.6+')
10391039
@mock.patch('rollbar._send_payload_thread_pool')
10401040
def test_thread_pool_handler(self, send_payload_thread_pool):
10411041
def _raise():

0 commit comments

Comments
 (0)