|
1 | 1 | # Copyright (c) Microsoft Corporation. All rights reserved. |
2 | 2 | # Licensed under the MIT License. |
3 | 3 | import json |
4 | | -import sys |
5 | 4 | import time |
6 | 5 | from datetime import datetime |
7 | | -from unittest.case import skipIf |
8 | 6 |
|
9 | 7 | from dateutil import parser |
10 | 8 | from tests.utils import testutils |
@@ -66,9 +64,6 @@ def test_eventhub_multiple(self): |
66 | 64 |
|
67 | 65 | self.assertDictEqual(all_row_keys_seen, row_keys_seen) |
68 | 66 |
|
69 | | - @skipIf(sys.version_info.minor == 7, |
70 | | - "Using azure-eventhub SDK with the EventHub Emulator" |
71 | | - "requires Python 3.8+") |
72 | 67 | @testutils.retryable_test(3, 5) |
73 | 68 | def test_eventhub_multiple_with_metadata(self): |
74 | 69 | # Generate a unique event body for EventHub event |
@@ -176,9 +171,6 @@ def test_eventhub_multiple(self): |
176 | 171 |
|
177 | 172 | self.assertDictEqual(all_row_keys_seen, row_keys_seen) |
178 | 173 |
|
179 | | - @skipIf(sys.version_info.minor == 7, |
180 | | - "Using azure-eventhub SDK with the EventHub Emulator" |
181 | | - "requires Python 3.8+") |
182 | 174 | @testutils.retryable_test(3, 5) |
183 | 175 | def test_eventhub_multiple_with_metadata(self): |
184 | 176 | # Generate a unique event body for EventHub event |
|
0 commit comments