diff options
author | 2020-08-22 03:54:51 +0200 | |
---|---|---|
committer | 2020-08-22 03:54:51 +0200 | |
commit | a71c38f07bba0191ba28eef12eea56e8a9265349 (patch) | |
tree | 1bea924a12c27854cbe0b4dd11ef5a0bf30472b1 /pydis_site/tests | |
parent | Remove the SHA from the wiki base.html (diff) |
Move the SHA into constants.py.
The util was redundant. Thanks @MarkKoz
Diffstat (limited to 'pydis_site/tests')
-rw-r--r-- | pydis_site/tests/test_utils.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/pydis_site/tests/test_utils.py b/pydis_site/tests/test_utils.py deleted file mode 100644 index f1419860..00000000 --- a/pydis_site/tests/test_utils.py +++ /dev/null @@ -1,11 +0,0 @@ -from django.test import TestCase - -from pydis_site.utils import get_git_sha -from pydis_site.utils.utils import GIT_SHA - - -class UtilsTests(TestCase): - - def test_git_sha(self): - """Test that the get_git_sha returns the correct SHA.""" - self.assertEqual(get_git_sha(), GIT_SHA) |