Skip to content

Commit

Permalink
fix: Missing v2 path
Browse files Browse the repository at this point in the history
  • Loading branch information
dploeger committed Jan 23, 2024
1 parent c4a83c6 commit d70a94a
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cmd/icarus.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/processors/add_alarm_test.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/processors/add_dtstamp_test.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/processors/add_property_test.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/processors/convert_all_day_test.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/processors/delete_property_test.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/processors/filter_test.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/processors/toolbox_test.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit d70a94a

Please sign in to comment.