From 99bd5bffdd95de1185f4046636fe1a1ae12a3d5c Mon Sep 17 00:00:00 2001 From: Martino Ferrari Date: Fri, 23 Jan 2026 11:46:59 +0100 Subject: [PATCH] Changed project uri --- cmd/mdt/main.go | 14 +++++++------- go.mod | 2 +- internal/builder/builder.go | 4 ++-- internal/formatter/formatter.go | 2 +- internal/index/index.go | 4 ++-- internal/lsp/server.go | 10 +++++----- internal/lsp/server_test.go | 4 ++-- internal/parser/parser_strictness_test.go | 2 +- internal/validator/validator.go | 6 +++--- test/builder_multifile_test.go | 2 +- test/integration_test.go | 10 +++++----- test/lsp_doc_test.go | 4 ++-- test/lsp_hover_context_test.go | 4 ++-- test/lsp_signal_test.go | 6 +++--- test/lsp_test.go | 6 +++--- test/validator_analyzed_test.go | 6 +++--- test/validator_components_test.go | 6 +++--- test/validator_db_test.go | 6 +++--- test/validator_extra_test.go | 6 +++--- test/validator_functions_array_test.go | 6 +++--- test/validator_gam_signals_linking_test.go | 6 +++--- test/validator_gam_signals_test.go | 6 +++--- test/validator_global_pragma_debug_test.go | 6 +++--- test/validator_global_pragma_test.go | 6 +++--- test/validator_global_pragma_update_test.go | 6 +++--- test/validator_ignore_pragma_test.go | 6 +++--- test/validator_implicit_signal_test.go | 6 +++--- test/validator_multifile_test.go | 6 +++--- test/validator_pragma_test.go | 6 +++--- test/validator_project_schema_test.go | 6 +++--- test/validator_schema_test.go | 6 +++--- test/validator_signal_properties_test.go | 6 +++--- test/validator_signal_test.go | 6 +++--- test/validator_signals_content_test.go | 6 +++--- test/validator_unused_test.go | 6 +++--- 35 files changed, 100 insertions(+), 100 deletions(-) diff --git a/cmd/mdt/main.go b/cmd/mdt/main.go index 220fe4c..a87d04b 100644 --- a/cmd/mdt/main.go +++ b/cmd/mdt/main.go @@ -4,13 +4,13 @@ import ( "bytes" "os" - "github.com/marte-dev/marte-dev-tools/internal/builder" - "github.com/marte-dev/marte-dev-tools/internal/formatter" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/logger" - "github.com/marte-dev/marte-dev-tools/internal/lsp" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/builder" + "github.com/marte-community/marte-dev-tools/internal/formatter" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/logger" + "github.com/marte-community/marte-dev-tools/internal/lsp" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func main() { diff --git a/go.mod b/go.mod index 0abfa8c..92ad08c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/marte-dev/marte-dev-tools +module github.com/marte-community/marte-dev-tools go 1.25.6 diff --git a/internal/builder/builder.go b/internal/builder/builder.go index 3fc902c..bb6f6f1 100644 --- a/internal/builder/builder.go +++ b/internal/builder/builder.go @@ -6,8 +6,8 @@ import ( "sort" "strings" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" ) type Builder struct { diff --git a/internal/formatter/formatter.go b/internal/formatter/formatter.go index cde021c..e339415 100644 --- a/internal/formatter/formatter.go +++ b/internal/formatter/formatter.go @@ -6,7 +6,7 @@ import ( "sort" "strings" - "github.com/marte-dev/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/parser" ) type Insertable struct { diff --git a/internal/index/index.go b/internal/index/index.go index aea8e10..cdf1ed8 100644 --- a/internal/index/index.go +++ b/internal/index/index.go @@ -5,8 +5,8 @@ import ( "path/filepath" "strings" - "github.com/marte-dev/marte-dev-tools/internal/logger" - "github.com/marte-dev/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/logger" + "github.com/marte-community/marte-dev-tools/internal/parser" ) type ProjectTree struct { diff --git a/internal/lsp/server.go b/internal/lsp/server.go index 6127ec0..9d08fcc 100644 --- a/internal/lsp/server.go +++ b/internal/lsp/server.go @@ -9,11 +9,11 @@ import ( "os" "strings" - "github.com/marte-dev/marte-dev-tools/internal/formatter" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/logger" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/formatter" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/logger" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) type JsonRpcMessage struct { diff --git a/internal/lsp/server_test.go b/internal/lsp/server_test.go index edd6987..22e9305 100644 --- a/internal/lsp/server_test.go +++ b/internal/lsp/server_test.go @@ -7,8 +7,8 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" ) func TestInitProjectScan(t *testing.T) { diff --git a/internal/parser/parser_strictness_test.go b/internal/parser/parser_strictness_test.go index 9e08bc0..265e346 100644 --- a/internal/parser/parser_strictness_test.go +++ b/internal/parser/parser_strictness_test.go @@ -3,7 +3,7 @@ package parser_test import ( "testing" - "github.com/marte-dev/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/parser" ) func TestParserStrictness(t *testing.T) { diff --git a/internal/validator/validator.go b/internal/validator/validator.go index 1225b9b..79ca890 100644 --- a/internal/validator/validator.go +++ b/internal/validator/validator.go @@ -8,9 +8,9 @@ import ( "cuelang.org/go/cue" "cuelang.org/go/cue/errors" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/schema" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/schema" ) type DiagnosticLevel int diff --git a/test/builder_multifile_test.go b/test/builder_multifile_test.go index ae4f302..010c385 100644 --- a/test/builder_multifile_test.go +++ b/test/builder_multifile_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/builder" + "github.com/marte-community/marte-dev-tools/internal/builder" ) func TestMultiFileBuildMergeAndOrder(t *testing.T) { diff --git a/test/integration_test.go b/test/integration_test.go index d71bc58..4b2cc3e 100644 --- a/test/integration_test.go +++ b/test/integration_test.go @@ -7,11 +7,11 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/builder" - "github.com/marte-dev/marte-dev-tools/internal/formatter" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/builder" + "github.com/marte-community/marte-dev-tools/internal/formatter" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestCheckCommand(t *testing.T) { diff --git a/test/lsp_doc_test.go b/test/lsp_doc_test.go index 96141dd..66a63c1 100644 --- a/test/lsp_doc_test.go +++ b/test/lsp_doc_test.go @@ -3,8 +3,8 @@ package integration import ( "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" ) func TestLSPHoverDoc(t *testing.T) { diff --git a/test/lsp_hover_context_test.go b/test/lsp_hover_context_test.go index b2bb70c..e254e06 100644 --- a/test/lsp_hover_context_test.go +++ b/test/lsp_hover_context_test.go @@ -3,8 +3,8 @@ package integration import ( "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" ) func TestGetNodeContaining(t *testing.T) { diff --git a/test/lsp_signal_test.go b/test/lsp_signal_test.go index e4f1214..81a0826 100644 --- a/test/lsp_signal_test.go +++ b/test/lsp_signal_test.go @@ -3,9 +3,9 @@ package integration import ( "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestLSPSignalReferences(t *testing.T) { diff --git a/test/lsp_test.go b/test/lsp_test.go index d5d06e3..81530d2 100644 --- a/test/lsp_test.go +++ b/test/lsp_test.go @@ -4,9 +4,9 @@ import ( "io/ioutil" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) // Helper to load and parse a file diff --git a/test/validator_analyzed_test.go b/test/validator_analyzed_test.go index 07dd07d..434fe64 100644 --- a/test/validator_analyzed_test.go +++ b/test/validator_analyzed_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestMDSWriterValidation(t *testing.T) { diff --git a/test/validator_components_test.go b/test/validator_components_test.go index 8f87355..8887e09 100644 --- a/test/validator_components_test.go +++ b/test/validator_components_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestPIDGAMValidation(t *testing.T) { diff --git a/test/validator_db_test.go b/test/validator_db_test.go index 0c2fe72..8230d69 100644 --- a/test/validator_db_test.go +++ b/test/validator_db_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestRealTimeApplicationValidation(t *testing.T) { diff --git a/test/validator_extra_test.go b/test/validator_extra_test.go index 7d28da6..5d8d719 100644 --- a/test/validator_extra_test.go +++ b/test/validator_extra_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestSDNSubscriberValidation(t *testing.T) { diff --git a/test/validator_functions_array_test.go b/test/validator_functions_array_test.go index cd70105..8cc20ec 100644 --- a/test/validator_functions_array_test.go +++ b/test/validator_functions_array_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestFunctionsArrayValidation(t *testing.T) { diff --git a/test/validator_gam_signals_linking_test.go b/test/validator_gam_signals_linking_test.go index 7f922d0..e4e8838 100644 --- a/test/validator_gam_signals_linking_test.go +++ b/test/validator_gam_signals_linking_test.go @@ -3,9 +3,9 @@ package integration import ( "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestGAMSignalLinking(t *testing.T) { diff --git a/test/validator_gam_signals_test.go b/test/validator_gam_signals_test.go index 3e417b6..7bd6cfa 100644 --- a/test/validator_gam_signals_test.go +++ b/test/validator_gam_signals_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestGAMSignalValidation(t *testing.T) { diff --git a/test/validator_global_pragma_debug_test.go b/test/validator_global_pragma_debug_test.go index 516c51a..fc0cd16 100644 --- a/test/validator_global_pragma_debug_test.go +++ b/test/validator_global_pragma_debug_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestGlobalPragmaDebug(t *testing.T) { diff --git a/test/validator_global_pragma_test.go b/test/validator_global_pragma_test.go index 560b0e8..980d899 100644 --- a/test/validator_global_pragma_test.go +++ b/test/validator_global_pragma_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestGlobalPragma(t *testing.T) { diff --git a/test/validator_global_pragma_update_test.go b/test/validator_global_pragma_update_test.go index 9245bdb..ee145cd 100644 --- a/test/validator_global_pragma_update_test.go +++ b/test/validator_global_pragma_update_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestGlobalPragmaUpdate(t *testing.T) { diff --git a/test/validator_ignore_pragma_test.go b/test/validator_ignore_pragma_test.go index 14f16fc..4a1d229 100644 --- a/test/validator_ignore_pragma_test.go +++ b/test/validator_ignore_pragma_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestIgnorePragma(t *testing.T) { diff --git a/test/validator_implicit_signal_test.go b/test/validator_implicit_signal_test.go index dec475f..d5b9297 100644 --- a/test/validator_implicit_signal_test.go +++ b/test/validator_implicit_signal_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestImplicitSignal(t *testing.T) { diff --git a/test/validator_multifile_test.go b/test/validator_multifile_test.go index 143540b..1f1fc23 100644 --- a/test/validator_multifile_test.go +++ b/test/validator_multifile_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func parseAndAddToIndex(t *testing.T, idx *index.ProjectTree, filePath string) { diff --git a/test/validator_pragma_test.go b/test/validator_pragma_test.go index 79b7531..434b400 100644 --- a/test/validator_pragma_test.go +++ b/test/validator_pragma_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestPragmaSuppression(t *testing.T) { diff --git a/test/validator_project_schema_test.go b/test/validator_project_schema_test.go index b90bd13..396a818 100644 --- a/test/validator_project_schema_test.go +++ b/test/validator_project_schema_test.go @@ -6,9 +6,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestProjectSpecificSchema(t *testing.T) { diff --git a/test/validator_schema_test.go b/test/validator_schema_test.go index fdb14ea..43dd19d 100644 --- a/test/validator_schema_test.go +++ b/test/validator_schema_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestSchemaValidationType(t *testing.T) { diff --git a/test/validator_signal_properties_test.go b/test/validator_signal_properties_test.go index 42c954e..9b99add 100644 --- a/test/validator_signal_properties_test.go +++ b/test/validator_signal_properties_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestSignalProperties(t *testing.T) { diff --git a/test/validator_signal_test.go b/test/validator_signal_test.go index 46ecab9..98b4abd 100644 --- a/test/validator_signal_test.go +++ b/test/validator_signal_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestSignalValidation(t *testing.T) { diff --git a/test/validator_signals_content_test.go b/test/validator_signals_content_test.go index e1c944a..5de9780 100644 --- a/test/validator_signals_content_test.go +++ b/test/validator_signals_content_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestSignalsContentValidation(t *testing.T) { diff --git a/test/validator_unused_test.go b/test/validator_unused_test.go index 6bcf686..025bdf8 100644 --- a/test/validator_unused_test.go +++ b/test/validator_unused_test.go @@ -3,9 +3,9 @@ package integration import ( "testing" - "github.com/marte-dev/marte-dev-tools/internal/index" - "github.com/marte-dev/marte-dev-tools/internal/parser" - "github.com/marte-dev/marte-dev-tools/internal/validator" + "github.com/marte-community/marte-dev-tools/internal/index" + "github.com/marte-community/marte-dev-tools/internal/parser" + "github.com/marte-community/marte-dev-tools/internal/validator" ) func TestUnusedGAM(t *testing.T) {