@@ -21,7 +21,7 @@ public async Task GetDatabase()
2121 . WithPlugin ( new TablePlugin ( ) )
2222 . WithPlugin ( new FunctionPlugin ( ) )
2323 . WithPlugin ( new DatabaseCleanup ( ) ) ;
24- var loader = factory . Create ( Path . Combine ( BasePath , Deployment ) , Database ) ;
24+ var loader = factory . Create ( Path . Join ( BasePath , Deployment ) , Database ) ;
2525
2626 var db = await loader . LoadAsync ( ) ;
2727
@@ -51,7 +51,7 @@ public async Task VerifyFunctionPreformatted()
5151 . WithPlugin ( new TablePlugin ( ) )
5252 . WithPlugin ( new FunctionPlugin ( ) ) ;
5353 // DatabaseCleanup intentionally omitted
54- var loaderWithoutCleanup = factoryWithoutCleanup . Create ( Path . Combine ( BasePath , Deployment ) , Database ) ;
54+ var loaderWithoutCleanup = factoryWithoutCleanup . Create ( Path . Join ( BasePath , Deployment ) , Database ) ;
5555 var dbWithoutCleanup = await loaderWithoutCleanup . LoadAsync ( ) ;
5656
5757 // with the DatabaseCleanup plugin
@@ -60,7 +60,7 @@ public async Task VerifyFunctionPreformatted()
6060 . WithPlugin ( new FunctionPlugin ( ) )
6161 . WithPlugin ( new MaterializedViewsPlugin ( ) )
6262 . WithPlugin ( new DatabaseCleanup ( ) ) ;
63- var loaderWithCleanup = factoryWithCleanup . Create ( Path . Combine ( BasePath , Deployment ) , Database ) ;
63+ var loaderWithCleanup = factoryWithCleanup . Create ( Path . Join ( BasePath , Deployment ) , Database ) ;
6464 var dbWithCleanup = await loaderWithCleanup . LoadAsync ( ) ;
6565
6666 // Assert
@@ -113,15 +113,15 @@ public async Task VerifyMaterializedView()
113113 . WithPlugin ( new TablePlugin ( ) )
114114 . WithPlugin ( new MaterializedViewsPlugin ( ) ) ;
115115 // DatabaseCleanup intentionally omitted
116- var loaderWithoutCleanup = factoryWithoutCleanup . Create ( Path . Combine ( BasePath , Deployment ) , Database ) ;
116+ var loaderWithoutCleanup = factoryWithoutCleanup . Create ( Path . Join ( BasePath , Deployment ) , Database ) ;
117117 var dbWithoutCleanup = await loaderWithoutCleanup . LoadAsync ( ) ;
118118
119119 // with the DatabaseCleanup plugin
120120 var factoryWithCleanup = new YamlDatabaseHandlerFactory < Model . Database > ( )
121121 . WithPlugin ( new TablePlugin ( ) )
122122 . WithPlugin ( new MaterializedViewsPlugin ( ) )
123123 . WithPlugin ( new DatabaseCleanup ( ) ) ;
124- var loaderWithCleanup = factoryWithCleanup . Create ( Path . Combine ( BasePath , Deployment ) , Database ) ;
124+ var loaderWithCleanup = factoryWithCleanup . Create ( Path . Join ( BasePath , Deployment ) , Database ) ;
125125 var dbWithCleanup = await loaderWithCleanup . LoadAsync ( ) ;
126126
127127 // Assert
@@ -158,7 +158,7 @@ public async Task VerifyFunctionWithCommentAtEnd()
158158 . WithPlugin ( new TablePlugin ( ) )
159159 . WithPlugin ( new FunctionPlugin ( ) )
160160 . WithPlugin ( new DatabaseCleanup ( ) ) ;
161- var loader = factory . Create ( Path . Combine ( BasePath , Deployment ) , Database ) ;
161+ var loader = factory . Create ( Path . Join ( BasePath , Deployment ) , Database ) ;
162162
163163 // Act - Load the database
164164 var db = await loader . LoadAsync ( ) ;
0 commit comments