Skip to content

Commit

Permalink
Drop dummy test cases
Browse files Browse the repository at this point in the history
As commit d5ed19b introduced dynamic test case
discovery using `unittest` default mechanisms, creation of dummy test cases
for unavailable is obsolete and therefore removed.
  • Loading branch information
deathaxe committed May 18, 2024
1 parent eaa9fc5 commit 5f15e73
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions package_control/tests/test_downloaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,8 @@ class WgetDownloaderTests(unittest.TestCase, DownloaderTestsMixin):
if hasattr(downloaders, 'OscryptoDownloader'):
class OscryptoDownloaderTests(unittest.TestCase, DownloaderTestsMixin):
downloader_class = downloaders.OscryptoDownloader
else:
class OscryptoDownloaderTests(unittest.TestCase):
pass


if hasattr(downloaders, 'WinINetDownloader'):
class WinINetDownloaderTests(unittest.TestCase, DownloaderTestsMixin):
downloader_class = downloaders.WinINetDownloader
else:
class WinINetDownloaderTests(unittest.TestCase):
pass

0 comments on commit 5f15e73

Please sign in to comment.