diff --git a/Payload_Type/thanatos/mythic/commands/exit/exit_test.go b/Payload_Type/thanatos/mythic/commands/exit/exit_test.go index a7b1d0b..69b4a49 100644 --- a/Payload_Type/thanatos/mythic/commands/exit/exit_test.go +++ b/Payload_Type/thanatos/mythic/commands/exit/exit_test.go @@ -2,7 +2,8 @@ package exit import ( "testing" - cmdtesting "thanatos/commands/testing" + + cmdtesting "github.com/MythicAgents/thanatos/commands/testing" ) var testCases = []cmdtesting.TestCase{ diff --git a/Payload_Type/thanatos/mythic/commands/sleep/sleep_test.go b/Payload_Type/thanatos/mythic/commands/sleep/sleep_test.go index 0505c4d..7a51883 100644 --- a/Payload_Type/thanatos/mythic/commands/sleep/sleep_test.go +++ b/Payload_Type/thanatos/mythic/commands/sleep/sleep_test.go @@ -4,7 +4,8 @@ import ( "fmt" "math" "testing" - cmdtesting "thanatos/commands/testing" + + cmdtesting "github.com/MythicAgents/thanatos/commands/testing" ) var testCases = []cmdtesting.TestCase{ diff --git a/Payload_Type/thanatos/mythic/commands/testing/test_runner.go b/Payload_Type/thanatos/mythic/commands/testing/test_runner.go index 5149ab2..f27dddc 100644 --- a/Payload_Type/thanatos/mythic/commands/testing/test_runner.go +++ b/Payload_Type/thanatos/mythic/commands/testing/test_runner.go @@ -7,7 +7,8 @@ import ( "math/big" "reflect" "testing" - "thanatos/commands/utils" + + "github.com/MythicAgents/thanatos/commands/utils" agentstructs "github.com/MythicMeta/MythicContainer/agent_structs" )