You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2021/03/30 21:03:45 UTC

[allura] branch master updated: Change test image url, since via.placeholder.com https cert is expired

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

brondsem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new 8131555  Change test image url, since via.placeholder.com https cert is expired
8131555 is described below

commit 8131555b22a0a3958ba1dfa77bd025a905e042c2
Author: Dave Brondsema <db...@slashdotmedia.com>
AuthorDate: Tue Mar 30 17:03:35 2021 -0400

    Change test image url, since via.placeholder.com https cert is expired
---
 Allura/allura/tests/functional/test_rest.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Allura/allura/tests/functional/test_rest.py b/Allura/allura/tests/functional/test_rest.py
index 56fed67..f96c9ee 100644
--- a/Allura/allura/tests/functional/test_rest.py
+++ b/Allura/allura/tests/functional/test_rest.py
@@ -518,7 +518,8 @@ class TestRestNbhdAddProject(TestRestApiBase):
                     "grouping_threshold": 5
                 }
             },
-            "icon_url": "https://via.placeholder.com/140x100",
+            # any image url can work here, just don't want to rely on any other websites:
+            "icon_url": "https://allura.apache.org/theme/img/logo_white.png",
         }
         r = self.api_post('/rest/p/add_project',
                           params=json.dumps(project_data),