From c35f7b8628898303d0c687ebaeb3c3d4318ba5f9 Mon Sep 17 00:00:00 2001 From: Matt Ehrnschwender Date: Sun, 7 Jul 2024 11:13:14 -0400 Subject: [PATCH] chore: fix tests --- Payload_Type/thanatos/mythic/commands/exit/exit_test.go | 3 ++- Payload_Type/thanatos/mythic/commands/sleep/sleep_test.go | 3 ++- Payload_Type/thanatos/mythic/commands/testing/test_runner.go | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) 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" )