-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ai 382 #508
Ai 382 #508
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #508 +/- ##
===================================================
- Coverage 65.35326% 63.74703% -1.60624%
===================================================
Files 374 379 +5
Lines 21344 21852 +508
Branches 1332 1333 +1
===================================================
- Hits 13949 13930 -19
- Misses 6886 7413 +527
Partials 509 509
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 1 file with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
src/InformaticsGateway/Services/Http/HL7DestinationController.cs
Dismissed
Show dismissed
Hide dismissed
Signed-off-by: Neil South <neil.south@answerdigital.com>
Signed-off-by: Neil South <neil.south@answerdigital.com>
Signed-off-by: Neil South <neil.south@answerdigital.com>
Signed-off-by: Neil South <neil.south@answerdigital.com>
@@ -240,7 +231,7 @@ private async Task ValidateCreateAsync(MonaiApplicationEntity item) | |||
{ | |||
throw new ObjectExistsException($"A MONAI Application Entity with the same AE Title '{item.AeTitle}' already exists."); | |||
} | |||
if (item.IgnoredSopClasses.Any() && item.AllowedSopClasses.Any()) | |||
if (item.IgnoredSopClasses.Count != 0 && item.AllowedSopClasses.Count != 0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency do you want to change this to is not
as well instead of !=
. Happy either way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point, will do.
Signed-off-by: Neil South <neil.south@answerdigital.com>
Signed-off-by: Neil South <neil.south@answerdigital.com>
Description
small tweeks to tidy up
Status
Ready
Types of changes