File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
service/src/test/java/uk/nhs/adaptors/gp2gp/ehr/utils Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,8 @@ void When_ExtractingNoOnsetDate_Expect_EmptyOutput() {
122122 @ Test
123123 void When_ExtractingFullReaction_Expect_Output () {
124124 AtomicInteger atomicInteger = new AtomicInteger (1 );
125- AllergyIntolerance .AllergyIntoleranceReactionComponent reactionComponent = new AllergyIntolerance .AllergyIntoleranceReactionComponent ();
125+ AllergyIntolerance .AllergyIntoleranceReactionComponent reactionComponent =
126+ new AllergyIntolerance .AllergyIntoleranceReactionComponent ();
126127 reactionComponent .setDescription ("description" );
127128
128129 CodeableConcept exposureRoute = new CodeableConcept ();
@@ -141,7 +142,8 @@ void When_ExtractingFullReaction_Expect_Output() {
141142 @ Test
142143 void When_ExtractingEmptyReaction_Expect_Output () {
143144 AtomicInteger atomicInteger = new AtomicInteger (1 );
144- AllergyIntolerance .AllergyIntoleranceReactionComponent reactionComponent = new AllergyIntolerance .AllergyIntoleranceReactionComponent ();
145+ AllergyIntolerance .AllergyIntoleranceReactionComponent reactionComponent =
146+ new AllergyIntolerance .AllergyIntoleranceReactionComponent ();
145147 assertEquals (REACTION_START , AllergyStructureExtractor .extractReaction (reactionComponent , atomicInteger ));
146148 }
147149}
You can’t perform that action at this time.
0 commit comments