You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by di...@apache.org on 2022/09/27 13:48:18 UTC

[allura] branch dw/8455-part2 updated: fixup! fixup! fixup! [#8455] converted the remaining modules fully to pytest

This is an automated email from the ASF dual-hosted git repository.

dill0wn pushed a commit to branch dw/8455-part2
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/dw/8455-part2 by this push:
     new b80d4c7da fixup! fixup! fixup! [#8455] converted the remaining modules fully to pytest
b80d4c7da is described below

commit b80d4c7da44ab730098abd57baff261282e0abc9
Author: Dillon Walls <di...@slashdotmedia.com>
AuthorDate: Tue Sep 27 13:48:06 2022 +0000

    fixup! fixup! fixup! [#8455] converted the remaining modules fully to pytest
---
 .../forgeshorturl/tests/functional/{test.py => test_main.py}        | 6 ++++++
 ForgeTracker/forgetracker/tests/functional/test_root.py             | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ForgeShortUrl/forgeshorturl/tests/functional/test.py b/ForgeShortUrl/forgeshorturl/tests/functional/test_main.py
similarity index 98%
rename from ForgeShortUrl/forgeshorturl/tests/functional/test.py
rename to ForgeShortUrl/forgeshorturl/tests/functional/test_main.py
index 1d3471d06..fd4ead380 100644
--- a/ForgeShortUrl/forgeshorturl/tests/functional/test.py
+++ b/ForgeShortUrl/forgeshorturl/tests/functional/test_main.py
@@ -27,6 +27,12 @@ from alluratest.controller import TestController
 from forgeshorturl.model import ShortUrl
 
 
+class AnotherTestThing:
+
+    def test_foo_thing(self):
+        assert bool(1) == True
+
+
 class TestRootController(TestController):
 
     def setup_method(self, method):
diff --git a/ForgeTracker/forgetracker/tests/functional/test_root.py b/ForgeTracker/forgetracker/tests/functional/test_root.py
index 1b97a8b37..129198ae6 100644
--- a/ForgeTracker/forgetracker/tests/functional/test_root.py
+++ b/ForgeTracker/forgetracker/tests/functional/test_root.py
@@ -1406,7 +1406,6 @@ class TestFunctionalController(TrackerTestController):
         canonical = response.html.select_one('link[rel=canonical]')
         assert 'page=' not in canonical
 
-
     def test_search_with_strange_chars(self):
         r = self.app.get('/p/test/bugs/search/?' +
                          urlencode({'q': 'tést'}))