Skip to content

Commit

Permalink
[TASK] Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
calien666 committed May 12, 2023
1 parent 262d822 commit e979826
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions Tests/Functional/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,10 @@ public function checkResponseFromCreateGlossary(): void
'de',
'en',
[
'hallo Welt' => 'hello world',
0 => [
'source' => 'hallo Welt',
'target' => 'hello world',
],
],
);

Expand All @@ -195,7 +198,10 @@ public function checkJsonFromCreateGlossaryIsValid(): void
'de',
'en',
[
'hallo Welt' => 'hello world',
0 => [
'source' => 'hallo Welt',
'target' => 'hello world',
],
],
);

Expand Down Expand Up @@ -241,7 +247,10 @@ public function checkJsonFromGetAllGlossariesIsValid(): void
'de',
'en',
[
'hallo Welt' => 'hello world',
0 => [
'source' => 'hallo Welt',
'target' => 'hello world',
],
],
);

Expand Down Expand Up @@ -279,7 +288,10 @@ public function checkResponseFromGetGlossary(): void
'de',
'en',
[
'hallo Welt' => 'hello world',
0 => [
'source' => 'hallo Welt',
'target' => 'hello world',
],
],
);

Expand All @@ -303,7 +315,10 @@ public function checkJsonFromGetGlossaryIsValid(): void
'de',
'en',
[
'hallo Welt' => 'hello world',
0 => [
'source' => 'hallo Welt',
'target' => 'hello world',
],
],
);

Expand Down Expand Up @@ -339,7 +354,10 @@ public function checkResponseFromDeleteGlossary(): void
'de',
'en',
[
'hallo Welt' => 'hello world',
0 => [
'source' => 'hallo Welt',
'target' => 'hello world',
],
],
);

Expand All @@ -363,7 +381,10 @@ public function checkResponseFromGetGlossaryEntries(): void
'de',
'en',
[
'hallo Welt' => 'hello world',
0 => [
'source' => 'hallo Welt',
'target' => 'hello world',
],
],
);

Expand Down

0 comments on commit e979826

Please sign in to comment.