diff options
author | Fabien Villepinte <fabien.villepinte@gmail.com> | 2019-11-07 21:31:47 +0100 |
---|---|---|
committer | Fabien Villepinte <fabien.villepinte@gmail.com> | 2019-11-07 21:31:47 +0100 |
commit | a555cc0b3d4f745e6d0bb8c595de400a0c728827 (patch) | |
tree | 61afac4216a8e7e629a878b8a873d8b32b7cf4a4 /ext/intl/tests/calendar_isWeekend_basic.phpt | |
parent | 80cfd990740aef314b7943a3fa18c27a23f40566 (diff) | |
download | php-git-a555cc0b3d4f745e6d0bb8c595de400a0c728827.tar.gz |
Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.
Closes GH-4872.
Diffstat (limited to 'ext/intl/tests/calendar_isWeekend_basic.phpt')
-rw-r--r-- | ext/intl/tests/calendar_isWeekend_basic.phpt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/intl/tests/calendar_isWeekend_basic.phpt b/ext/intl/tests/calendar_isWeekend_basic.phpt index ba9bbefb2c..943bd9a29a 100644 --- a/ext/intl/tests/calendar_isWeekend_basic.phpt +++ b/ext/intl/tests/calendar_isWeekend_basic.phpt @@ -16,9 +16,7 @@ var_dump($intlcal->isWeekend(strtotime('2012-02-29 12:00:00 +0000') * 1000)); var_dump(intlcal_is_weekend($intlcal, strtotime('2012-02-29 12:00:00 +0000') * 1000)); var_dump($intlcal->isWeekend(strtotime('2012-03-11 12:00:00 +0000') * 1000)); ?> -==DONE== --EXPECT-- bool(false) bool(false) bool(true) -==DONE== |