@@ -175,14 +175,14 @@ public async Async.Task Post_CreatesJob_AndContainer() {
175175 var metadata = Assert . Single ( container . Value ) ;
176176 Assert . Equal ( new KeyValuePair < string , string > ( "container_type" , "logs" ) , metadata ) ;
177177 }
178-
179-
178+
179+
180180 [ Fact ]
181181 public async Async . Task Get_CanFindSpecificJobWithTaskInfo ( ) {
182-
182+
183183 var taskConfig = new TaskConfig ( _jobId , new List < Guid > ( ) , new TaskDetails ( TaskType . Coverage , 60 ) ) ;
184184 var task = new Task ( _jobId , Guid . NewGuid ( ) , TaskState . Running , Os . Windows , taskConfig ) ;
185-
185+
186186 await Context . InsertAll (
187187 new Job ( _jobId , JobState . Stopped , _config , null ) , task ) ;
188188
@@ -201,12 +201,12 @@ await Context.InsertAll(
201201 Assert . Equal ( task . State , returnedTasks [ 0 ] . State ) ;
202202 Assert . Equal ( task . Config . Task . Type , returnedTasks [ 0 ] . Type ) ;
203203 }
204-
204+
205205 [ Fact ]
206206 public async Async . Task Get_CanFindSpecificJobWithFullTask ( ) {
207207 var taskConfig = new TaskConfig ( _jobId , new List < Guid > ( ) , new TaskDetails ( TaskType . Coverage , 60 ) ) ;
208208 var task = new Task ( _jobId , Guid . NewGuid ( ) , TaskState . Running , Os . Windows , taskConfig ) ;
209-
209+
210210 await Context . InsertAll (
211211 new Job ( _jobId , JobState . Stopped , _config , null ) , task ) ;
212212
@@ -224,6 +224,6 @@ await Context.InsertAll(
224224 Assert . Equal ( task . TaskId , returnedTasks [ 0 ] . TaskId ) ;
225225 Assert . Equal ( task . State , returnedTasks [ 0 ] . State ) ;
226226 Assert . Equal ( task . Config . Task . Type , returnedTasks [ 0 ] . Type ) ;
227-
227+
228228 }
229229}
0 commit comments