Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBCarter committed Nov 26, 2024
1 parent 3ffd2ff commit c7f42a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Sources/XyoClient/Api/Archivist/ArchivistApiClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public class XyoArchivistApiClient {

private init(_ config: XyoArchivistApiConfig, _ account: AccountInstance?) {
self.config = config
self.queryAccount = account ?? AccountServices.getNamedAccount(name: "DefaultArchivistApiClientAccount")
self.queryAccount =
account ?? AccountServices.getNamedAccount(name: "DefaultArchivistApiClientAccount")
}

public func insert(
Expand Down
2 changes: 1 addition & 1 deletion Tests/XyoClientTests/Panel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ final class PanelTests: XCTestCase {

@available(iOS 15, *)
func testSimplePanelReport() async {
let panel = XyoPanel ()
let panel = XyoPanel()
let result = await panel.reportQuery()
XCTAssertEqual(result.bw.addresses.count, 1)
XCTAssertEqual(result.bw.addresses[0], panel.account.address)
Expand Down

0 comments on commit c7f42a1

Please sign in to comment.