Skip to content

Commit

Permalink
add some debug message for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ferishili committed Dec 17, 2024
1 parent 4f21588 commit 6c6cd31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/upload_ingest_with_configpanel_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ public function test_upload_ingest_configpanel(): void {

// Workflow configuration helper assertions.
$wfconfighelper = workflowconfiguration_helper::get_instance(1);
$this->assertTrue($wfconfighelper->can_provide_configuration_panel());
$this->assertNotEmpty($wfconfighelper->get_upload_workflow_configuration_panel());
$this->assertNotEmpty($wfconfighelper->get_allowed_upload_configurations());
$this->assertTrue($wfconfighelper->can_provide_configuration_panel(), 'Unable to provide configuration panel!');
$this->assertNotEmpty($wfconfighelper->get_upload_workflow_configuration_panel(), 'Config panel is empty!');
$this->assertNotEmpty($wfconfighelper->get_allowed_upload_configurations(), 'Allowed configs are empty!');

$configpanelelementmapping = ['straightToPublishing' => 'boolean'];
$formdata = new stdClass();
Expand Down

0 comments on commit 6c6cd31

Please sign in to comment.