From 2e97936133c077f99041c731a5503b96e8f9540e Mon Sep 17 00:00:00 2001 From: Melora Hugues Date: Sat, 16 Sep 2023 16:20:09 +0200 Subject: [PATCH] fix module name --- go.mod | 2 +- parser_test.go | 2 +- pci_test.go | 2 +- sata_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 7c67964..0d690c3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.faercol.me/faercol/device-path +module git.faercol.me/faercol/devicepath go 1.20 diff --git a/parser_test.go b/parser_test.go index 9856db5..12842da 100644 --- a/parser_test.go +++ b/parser_test.go @@ -3,7 +3,7 @@ package devicepath_test import ( "testing" - devicepath "git.faercol.me/faercol/device-path" + "git.faercol.me/faercol/devicepath" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/pci_test.go b/pci_test.go index 2e182cf..3e8c183 100644 --- a/pci_test.go +++ b/pci_test.go @@ -3,7 +3,7 @@ package devicepath_test import ( "testing" - devicepath "git.faercol.me/faercol/device-path" + "git.faercol.me/faercol/devicepath" "github.com/stretchr/testify/assert" ) diff --git a/sata_test.go b/sata_test.go index 39db850..b749061 100644 --- a/sata_test.go +++ b/sata_test.go @@ -3,7 +3,7 @@ package devicepath_test import ( "testing" - devicepath "git.faercol.me/faercol/device-path" + "git.faercol.me/faercol/devicepath" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" )