Skip to content

Commit

Permalink
Remove unneeded parentheses in test code
Browse files Browse the repository at this point in the history
  • Loading branch information
onox committed Jul 28, 2024
1 parent 9d32469 commit 7b9bb29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/test_images.adb
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ package body Test_Images is
Image : constant String := Value.Image;
begin
Assert
((Text = Image) or else (Text2 = Image), "Image '" & Image & "' is not '" & Text & "'");
(Text = Image or else Text2 = Image, "Image '" & Image & "' is not '" & Text & "'");
end Test_Multiple_Members_Object_Text;

procedure Test_Array_Object_Array (Object : in out Test) is
Expand Down

0 comments on commit 7b9bb29

Please sign in to comment.