Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
masonticehurst committed Jan 28, 2024
1 parent 46d615b commit 5846407
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eRINA_Tests/src/test_rina_unregister.adb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ package body Test_RINA_Unregister is
begin
Unregister_Success := RINA_Unregister (RINA_Dev_FD, DIF_Name, Long_App_Name, 0);
exception
when Exceptions.Bounded_Length_Expcetion =>
when Exceptions.Bounded_Length_Exception =>
Caused_Error := True;

Assert (Caused_Error and Unregister_Success = Invalid_FD, "App name is too long");
Expand All @@ -88,7 +88,7 @@ package body Test_RINA_Unregister is
begin
Unregister_Success := RINA_Register (RINA_Dev_FD, DIF_Name, Empty_App_Name, 0);
exception
when Exceptions.Bounded_Length_Expcetion =>
when Exceptions.Bounded_Length_Exception =>
Caused_Error := True;

Assert (Caused_Error and Unregister_Success = Invalid_FD, "App name is empty");
Expand Down

0 comments on commit 5846407

Please sign in to comment.