Skip to content

Commit

Permalink
Merge pull request #65 from hmcts/bugfix/stop-clearing-everything-not…
Browse files Browse the repository at this point in the history
…-from-tests

filter for automated tests before clearing up conferences
  • Loading branch information
shaed-parkar authored Aug 14, 2019
2 parents c45d441 + 3f28022 commit c26c652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VideoAPI/VideoApi.AcceptanceTests/Steps/ConferenceSteps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ public void ThenAListOfTheConferenceDetailsShouldBeRetrieved()
{
AssertParticipantSummaryResponse.ForParticipant(participant);
}
conference.ScheduledDateTime.Day.Should().Be(DateTime.Now.Day);
conference.ScheduledDateTime.DayOfYear.Should().Be(DateTime.Now.DayOfYear);
}

_context.NewConferences = conferences;
_context.NewConferences = conferences.Where(x => x.CaseName.StartsWith("Automated Test Hearing")).ToList();
}

[Then(@"the summary of conference details should be retrieved")]
Expand Down

0 comments on commit c26c652

Please sign in to comment.