Skip to content

Commit

Permalink
style: ran prettier on changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed May 7, 2024
1 parent f1bfeea commit b4a5fa4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ class APIModelsDNSResolverSettingsTestCase extends TestCase {
public function test_tlsport(): void {
# Obtain the current webGUI cert
$cert = new Certificate(id: 0);

$settings = new DNSResolverSettings(
tlsport: '8353',
sslcertref: $cert->refid->value,
enablessl: true,
async: false
enablessl: true,
async: false,
);
$settings->update(apply: true);
$unbound_config = file_get_contents('/var/unbound/unbound.conf');
Expand All @@ -58,7 +58,7 @@ class APIModelsDNSResolverSettingsTestCase extends TestCase {
tlsport: '853',
enablessl: true,
sslcertref: $cert->refid->value,
async: false
async: false,
);
$settings->update(apply: true);
$unbound_config = file_get_contents('/var/unbound/unbound.conf');
Expand Down

0 comments on commit b4a5fa4

Please sign in to comment.