From d70a94a756fe8cd96ec0eb71136c306356329937 Mon Sep 17 00:00:00 2001 From: Dennis Ploeger Date: Tue, 23 Jan 2024 19:38:41 +0100 Subject: [PATCH] fix: Missing v2 path --- cmd/icarus.go | 4 ++-- pkg/processors/add_alarm_test.go | 2 +- pkg/processors/add_dtstamp_test.go | 2 +- pkg/processors/add_property_test.go | 2 +- pkg/processors/convert_all_day_test.go | 2 +- pkg/processors/delete_property_test.go | 2 +- pkg/processors/filter_test.go | 2 +- pkg/processors/toolbox_test.go | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cmd/icarus.go b/cmd/icarus.go index 509d606..e67e40b 100644 --- a/cmd/icarus.go +++ b/cmd/icarus.go @@ -3,8 +3,8 @@ package main import ( "fmt" "github.com/akamensky/argparse" - "github.com/dploeger/icarus/pkg/outputTypes" - "github.com/dploeger/icarus/pkg/processors" + "github.com/dploeger/icarus/v2/pkg/outputTypes" + "github.com/dploeger/icarus/v2/pkg/processors" "github.com/emersion/go-ical" "github.com/sirupsen/logrus" "github.com/thoas/go-funk" diff --git a/pkg/processors/add_alarm_test.go b/pkg/processors/add_alarm_test.go index 38815b8..bea7f0a 100644 --- a/pkg/processors/add_alarm_test.go +++ b/pkg/processors/add_alarm_test.go @@ -1,7 +1,7 @@ package processors import ( - "github.com/dploeger/icarus/internal" + "github.com/dploeger/icarus/v2/internal" "github.com/emersion/go-ical" "github.com/stretchr/testify/assert" "testing" diff --git a/pkg/processors/add_dtstamp_test.go b/pkg/processors/add_dtstamp_test.go index 338a6b5..f00bb3b 100644 --- a/pkg/processors/add_dtstamp_test.go +++ b/pkg/processors/add_dtstamp_test.go @@ -1,7 +1,7 @@ package processors import ( - "github.com/dploeger/icarus/internal" + "github.com/dploeger/icarus/v2/internal" "github.com/emersion/go-ical" "github.com/stretchr/testify/assert" "testing" diff --git a/pkg/processors/add_property_test.go b/pkg/processors/add_property_test.go index a0074d1..8439b87 100644 --- a/pkg/processors/add_property_test.go +++ b/pkg/processors/add_property_test.go @@ -1,7 +1,7 @@ package processors import ( - "github.com/dploeger/icarus/internal" + "github.com/dploeger/icarus/v2/internal" "github.com/emersion/go-ical" "github.com/stretchr/testify/assert" "testing" diff --git a/pkg/processors/convert_all_day_test.go b/pkg/processors/convert_all_day_test.go index 75a1cd5..1d788a1 100644 --- a/pkg/processors/convert_all_day_test.go +++ b/pkg/processors/convert_all_day_test.go @@ -1,7 +1,7 @@ package processors import ( - "github.com/dploeger/icarus/internal" + "github.com/dploeger/icarus/v2/internal" "github.com/emersion/go-ical" "github.com/stretchr/testify/assert" "testing" diff --git a/pkg/processors/delete_property_test.go b/pkg/processors/delete_property_test.go index c06e31e..bbde053 100644 --- a/pkg/processors/delete_property_test.go +++ b/pkg/processors/delete_property_test.go @@ -1,7 +1,7 @@ package processors import ( - "github.com/dploeger/icarus/internal" + "github.com/dploeger/icarus/v2/internal" "github.com/emersion/go-ical" "github.com/stretchr/testify/assert" "testing" diff --git a/pkg/processors/filter_test.go b/pkg/processors/filter_test.go index 89d438e..6728d3d 100644 --- a/pkg/processors/filter_test.go +++ b/pkg/processors/filter_test.go @@ -1,7 +1,7 @@ package processors import ( - "github.com/dploeger/icarus/internal" + "github.com/dploeger/icarus/v2/internal" "github.com/emersion/go-ical" "github.com/stretchr/testify/assert" _ "github.com/stretchr/testify/assert" diff --git a/pkg/processors/toolbox_test.go b/pkg/processors/toolbox_test.go index 46c38cb..8bde9a5 100644 --- a/pkg/processors/toolbox_test.go +++ b/pkg/processors/toolbox_test.go @@ -1,7 +1,7 @@ package processors import ( - "github.com/dploeger/icarus/internal" + "github.com/dploeger/icarus/v2/internal" "github.com/emersion/go-ical" "github.com/stretchr/testify/assert" "regexp"