Skip to content

Commit

Permalink
Update HostingSubscriptionCreateTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bobimicroweber committed Apr 24, 2024
1 parent 625d5e1 commit e25aaf0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/tests/Unit/HostingSubscriptionCreateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,13 @@ function test_create()
$newDatabase = new Database();
$newDatabase->hosting_subscription_id = $hostingSubscriptionData['id'];
$newDatabase->is_remote_database_server = 0;
$newDatabase->database_name = 'phyre_unit_test_db_'.$randId;
$newDatabase->database_name = 'ppdb'.$randId;
$newDatabase->save();

$newDatabaseUser = new DatabaseUser();
$newDatabaseUser->database_id = $newDatabase->id;
$newDatabaseUser->username = 'phyre_unit_test_user_'.$randId;
$newDatabaseUser->password = 'phyre_unit_test_password_'.$randId;
$newDatabaseUser->username = 'pput'.$randId;
$newDatabaseUser->password = 'pppass'.$randId;
$newDatabaseUser->save();
}

Expand Down

0 comments on commit e25aaf0

Please sign in to comment.