mirror of
https://github.com/nextcloud/server.git
synced 2026-07-05 12:34:39 +02:00
20553c1afe
This reverts commit dccdeca258.
9 lines
174 B
PHP
Executable File
9 lines
174 B
PHP
Executable File
<?php
|
|
require_once(dirname(__FILE__) . '/../../autorun.php');
|
|
|
|
class FailingTest extends UnitTestCase {
|
|
function test_fail() {
|
|
$this->assertEqual(1,2);
|
|
}
|
|
}
|
|
?>
|