@@ -17,7 +17,7 @@ final class PostgreSQLStorageTests: XCTestCase {
1717 }
1818
1919 func testFuzzerRegistration( ) async throws {
20- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
20+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
2121 let storage = PostgreSQLStorage ( databasePool: databasePool)
2222
2323 // Test fuzzer registration (this would fail without actual database)
@@ -37,7 +37,7 @@ final class PostgreSQLStorageTests: XCTestCase {
3737 }
3838
3939 func testProgramStorage( ) async throws {
40- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
40+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
4141 let storage = PostgreSQLStorage ( databasePool: databasePool)
4242
4343 // Create execution metadata
@@ -64,7 +64,7 @@ final class PostgreSQLStorageTests: XCTestCase {
6464 }
6565
6666 func testExecutionStorage( ) async throws {
67- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
67+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
6868 let storage = PostgreSQLStorage ( databasePool: databasePool)
6969
7070 // Test execution storage interface
@@ -89,7 +89,7 @@ final class PostgreSQLStorageTests: XCTestCase {
8989 }
9090
9191 func testCrashStorage( ) async throws {
92- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
92+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
9393 let storage = PostgreSQLStorage ( databasePool: databasePool)
9494
9595 // Test crash storage interface
@@ -113,7 +113,7 @@ final class PostgreSQLStorageTests: XCTestCase {
113113 }
114114
115115 func testProgramRetrieval( ) async throws {
116- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
116+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
117117 let storage = PostgreSQLStorage ( databasePool: databasePool)
118118
119119 // Test program retrieval (this would fail without actual database)
@@ -128,7 +128,7 @@ final class PostgreSQLStorageTests: XCTestCase {
128128 }
129129
130130 func testMetadataRetrieval( ) async throws {
131- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
131+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
132132 let storage = PostgreSQLStorage ( databasePool: databasePool)
133133
134134 // Test metadata retrieval
@@ -143,7 +143,7 @@ final class PostgreSQLStorageTests: XCTestCase {
143143 }
144144
145145 func testExecutionHistoryRetrieval( ) async throws {
146- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
146+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
147147 let storage = PostgreSQLStorage ( databasePool: databasePool)
148148
149149 // Test execution history retrieval
@@ -158,7 +158,7 @@ final class PostgreSQLStorageTests: XCTestCase {
158158 }
159159
160160 func testRecentProgramsRetrieval( ) async throws {
161- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
161+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
162162 let storage = PostgreSQLStorage ( databasePool: databasePool)
163163
164164 // Test recent programs retrieval
@@ -173,7 +173,7 @@ final class PostgreSQLStorageTests: XCTestCase {
173173 }
174174
175175 func testMetadataUpdate( ) async throws {
176- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
176+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
177177 let storage = PostgreSQLStorage ( databasePool: databasePool)
178178
179179 // Create execution metadata
@@ -193,7 +193,7 @@ final class PostgreSQLStorageTests: XCTestCase {
193193 }
194194
195195 func testStorageStatistics( ) async throws {
196- let databasePool = DatabasePool ( connectionString: " PostgreSQLTestUtils.getConnectionString() " )
196+ let databasePool = DatabasePool ( connectionString: PostgreSQLTestUtils . getConnectionString ( ) )
197197 let storage = PostgreSQLStorage ( databasePool: databasePool)
198198
199199 // Test storage statistics
0 commit comments