Skip to content

Commit

Permalink
Fix DashboardTest file
Browse files Browse the repository at this point in the history
  • Loading branch information
CamilleBeau committed May 16, 2024
1 parent 2ece40c commit c77014c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/dashboard/test/DashboardTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function setUp(): void
$this->DB->insert(
"conflicts_unresolved",
[
'TableName' => 'TestTestTest',
'TestName' => 'TestTestTest',
'ExtraKeyColumn' => 'Test',
'ExtraKey1' => 'Null',
'ExtraKey2' => 'Null',
Expand Down Expand Up @@ -180,7 +180,7 @@ function setUp(): void
'ResolutionTimestamp' => '2015-11-03 16:21:49',
'User1' => 'Null',
'User2' => 'Null',
'TableName' => 'Test',
'TestName' => 'Test',
'ExtraKey1' => 'NULL',
'ExtraKey2' => 'NULL',
'FieldName' => 'TestTestTest',
Expand All @@ -194,7 +194,7 @@ function setUp(): void
$this->DB->insert(
"conflicts_unresolved",
[
'TableName' => 'TestTestTest',
'TestName' => 'TestTestTest',
'ExtraKeyColumn' => 'Test',
'ExtraKey1' => 'Null',
'ExtraKey2' => 'Null',
Expand Down Expand Up @@ -258,7 +258,7 @@ public function tearDown(): void
);
$this->DB->delete(
"conflicts_unresolved",
['TableName' => 'TestTestTest']
['TestName' => 'TestTestTest']
);
$this->DB->delete(
"files_qcstatus",
Expand Down Expand Up @@ -316,7 +316,7 @@ public function tearDown(): void
);
$this->DB->delete(
"conflicts_unresolved",
['TableName' => 'TestTestTest']
['TestName' => 'TestTestTest']
);
$this->DB->update(
"Config",
Expand Down

0 comments on commit c77014c

Please sign in to comment.