Skip to content

Commit

Permalink
little test
Browse files Browse the repository at this point in the history
  • Loading branch information
v0id-strike committed Jan 9, 2025
1 parent 2a3b0f8 commit 44e0776
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/src/interactor_impl.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -770,8 +770,8 @@ interactor& interactor_impl::initCommands()
{
// Validate the alias arguments
check_args(args, 2, "alias");
const std::string& aliasName = args[0];
const std::string& aliasCommand = args[1];
const std::string& aliasName = args[1];
const std::string& aliasCommand = args[2];

Check warning on line 774 in library/src/interactor_impl.cxx

View check run for this annotation

Codecov / codecov/patch

library/src/interactor_impl.cxx#L773-L774

Added lines #L773 - L774 were not covered by tests

// Add alias to the map
AliasMap[aliasName] = aliasCommand;
Expand Down

0 comments on commit 44e0776

Please sign in to comment.