@@ -27,7 +27,7 @@ public SeedApplicatorTests()
2727
2828 _seed = MakeSeed (
2929 "Test" ,
30- MakeModule ( "( init) " , [ "init-sql" ] ) ,
30+ MakeModule ( "init" , [ "init-sql" ] ) ,
3131 MakeModule ( "A" , [ "a-sql" ] , provides : [ "X" ] ) ,
3232 MakeModule ( "B" , [ "b-sql" ] , requires : [ "X" ] )
3333 ) ;
@@ -122,9 +122,9 @@ public async Task ApplyAsync_Ok()
122122 ExpectReportStarting ( ) ;
123123 ExpectConnect ( ) ;
124124 ExpectPrepare ( ) ;
125- ExpectReportApplying ( "( init) " ) ; ExpectExecuteBatch ( "init-sql" ) ;
126- ExpectReportApplying ( "A" ) ; ExpectExecuteBatch ( "a-sql" ) ;
127- ExpectReportApplying ( "B" ) ; ExpectExecuteBatch ( "b-sql" ) ;
125+ ExpectReportApplying ( "init" ) ; ExpectExecuteBatch ( "init-sql" ) ;
126+ ExpectReportApplying ( "A" ) ; ExpectExecuteBatch ( "a-sql" ) ;
127+ ExpectReportApplying ( "B" ) ; ExpectExecuteBatch ( "b-sql" ) ;
128128 ExpectReportApplied ( count : 3 , TargetDisposition . Successful ) ;
129129
130130 await Applicator . ApplyAsync ( ) ;
@@ -142,7 +142,7 @@ public async Task ApplyAsync_Cycle()
142142 {
143143 _seed = MakeSeed (
144144 "Test" ,
145- MakeModule ( "( init) " , [ "init-sql" ] ) ,
145+ MakeModule ( "init" , [ "init-sql" ] ) ,
146146 MakeModule ( "A" , [ "a-sql" ] , requires : [ "B" ] ) , // \_ cyclic
147147 MakeModule ( "B" , [ "b-sql" ] , requires : [ "A" ] ) // / dependency
148148 ) ;
@@ -168,7 +168,7 @@ public async Task ApplyAsync_UnprovidedTopic()
168168 {
169169 _seed = MakeSeed (
170170 "Test" ,
171- MakeModule ( "( init) " , [ "init-sql" ] ) ,
171+ MakeModule ( "init" , [ "init-sql" ] ) ,
172172 MakeModule ( "A" , [ "a-sql" ] , requires : [ "X" ] ) , // \_ unprovided
173173 MakeModule ( "B" , [ "b-sql" ] , requires : [ "X" ] ) // / topic
174174 ) ;
@@ -216,8 +216,8 @@ public async Task ApplyAsync_Exception()
216216 ExpectReportStarting ( ) ;
217217 ExpectConnect ( ) ;
218218 ExpectPrepare ( ) ;
219- ExpectReportApplying ( "( init) " ) ; ExpectExecuteBatch ( "init-sql" ) ;
220- ExpectReportApplying ( "A" ) ; ExpectExecuteBatch ( "a-sql" , exception : e ) ;
219+ ExpectReportApplying ( "init" ) ; ExpectExecuteBatch ( "init-sql" ) ;
220+ ExpectReportApplying ( "A" ) ; ExpectExecuteBatch ( "a-sql" , exception : e ) ;
221221 ExpectReportProblem ( "Database is on fire." ) ;
222222 ExpectReportApplied ( count : 1 , TargetDisposition . Failed ) ;
223223
0 commit comments