Skip to content

Commit 6d348c6

Browse files
committed
fix broken unit test
1 parent c2a6f5d commit 6d348c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/resource_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func Test_prepareImport(t *testing.T) {
6060
}
6161
for _, tt := range tests {
6262
t.Run(tt.name, func(t *testing.T) {
63-
if got := prepareImport(tt.args.proto, ""); !reflect.DeepEqual(got, tt.want) {
63+
if got := prepareImport(tt.args.proto); !reflect.DeepEqual(got, tt.want) {
6464
t.Errorf("prepareImport() = %v, want %v",
6565
string(got),
6666
string(tt.want))

0 commit comments

Comments
 (0)