aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/includes/NetworkTest.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-06-13 19:07:05 +0000
committerMario <mario@mariovavti.com>2024-06-13 19:07:05 +0000
commitff018b975b47a57433b5f76634f9948164919e25 (patch)
tree408f52fb71a955ab2bf13a3b8f89c6d293b217e6 /tests/unit/includes/NetworkTest.php
parent6e0d0e38321dda6075586c12244c73eff6623565 (diff)
parentfcd657040e90b957068be0c6010faa78020cf05d (diff)
downloadvolse-hubzilla-ff018b975b47a57433b5f76634f9948164919e25.tar.gz
volse-hubzilla-ff018b975b47a57433b5f76634f9948164919e25.tar.bz2
volse-hubzilla-ff018b975b47a57433b5f76634f9948164919e25.zip
Merge branch 'fix-rpost-module' into 'dev'
Refactoring and fixed for Module\Rpost See merge request hubzilla/core!2136
Diffstat (limited to 'tests/unit/includes/NetworkTest.php')
-rw-r--r--tests/unit/includes/NetworkTest.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/unit/includes/NetworkTest.php b/tests/unit/includes/NetworkTest.php
index 5bf175953..a41075f25 100644
--- a/tests/unit/includes/NetworkTest.php
+++ b/tests/unit/includes/NetworkTest.php
@@ -7,12 +7,6 @@
class NetworkTest extends Zotlabs\Tests\Unit\UnitTestCase {
- public function setUp() : void {
- parent::setUp();
-
- \App::set_baseurl("https://mytest.org");
- }
-
/**
* @dataProvider localUrlTestProvider
*/
@@ -23,7 +17,7 @@ class NetworkTest extends Zotlabs\Tests\Unit\UnitTestCase {
public static function localUrlTestProvider() : array {
return [
[ '/some/path', true ],
- [ 'https://mytest.org/some/path', true ],
+ [ 'https://hubzilla.test/some/path', true ],
[ 'https://other.site/some/path', false ],
];
}