Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
7e6c0ec2
Unverified
Commit
7e6c0ec2
authored
4 years ago
by
Morris Jobke
Browse files
Options
Downloads
Patches
Plain Diff
Use assertEqualsCanonicalizing instead of deprecated assertEquals parameter
Signed-off-by:
Morris Jobke
<
hey@morrisjobke.de
>
parent
e4144e6b
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/dav/tests/unit/CalDAV/CalDavBackendTest.php
+2
-2
2 additions, 2 deletions
apps/dav/tests/unit/CalDAV/CalDavBackendTest.php
tests/lib/L10N/FactoryTest.php
+2
-2
2 additions, 2 deletions
tests/lib/L10N/FactoryTest.php
with
4 additions
and
4 deletions
apps/dav/tests/unit/CalDAV/CalDavBackendTest.php
+
2
−
2
View file @
7e6c0ec2
...
...
@@ -279,7 +279,7 @@ EOD;
$this
->
assertCount
(
0
,
$calendarObjects
);
}
public
function
testMultipleCalendarObjectsWithSameUID
()
{
$this
->
expectException
(
\Sabre\DAV\Exception\BadRequest
::
class
);
$this
->
expectExceptionMessage
(
'Calendar object with uid already exists in this calendar collection.'
);
...
...
@@ -441,7 +441,7 @@ EOD;
$expectedEventsInResult
=
array_map
(
function
(
$index
)
use
(
$events
)
{
return
$events
[
$index
];
},
$expectedEventsInResult
);
$this
->
assertEquals
(
$expectedEventsInResult
,
$result
,
''
,
0.0
,
10
,
true
);
$this
->
assertEquals
Canonicalizing
(
$expectedEventsInResult
,
$result
);
}
public
function
testGetCalendarObjectByUID
()
{
...
...
This diff is collapsed.
Click to expand it.
tests/lib/L10N/FactoryTest.php
+
2
−
2
View file @
7e6c0ec2
...
...
@@ -329,7 +329,7 @@ class FactoryTest extends TestCase {
->
with
(
$app
)
->
willReturn
(
\OC
::
$SERVERROOT
.
'/tests/data/l10n/'
);
$this
->
assertEquals
([
'cs'
,
'de'
,
'en'
,
'ru'
],
$factory
->
findAvailableLanguages
(
$app
)
,
''
,
0.0
,
10
,
true
);
$this
->
assertEquals
Canonicalizing
([
'cs'
,
'de'
,
'en'
,
'ru'
],
$factory
->
findAvailableLanguages
(
$app
));
}
public
function
dataLanguageExists
()
{
...
...
@@ -360,7 +360,7 @@ class FactoryTest extends TestCase {
->
with
(
'theme'
)
->
willReturn
(
'abc'
);
$this
->
assertEquals
([
'en'
,
'zz'
],
$factory
->
findAvailableLanguages
(
$app
)
,
''
,
0.0
,
10
,
true
);
$this
->
assertEquals
Canonicalizing
([
'en'
,
'zz'
],
$factory
->
findAvailableLanguages
(
$app
));
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment