Skip to content

Commit 83bbf9c

Browse files
author
Franck Rupin
committed
Change copyright date in test file
- Update the update the copyright's date
1 parent 94d0f41 commit 83bbf9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ovs/datapath_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2017 DigitalOcean.
1+
// Copyright 2021 DigitalOcean.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -144,7 +144,7 @@ func TestAddDataPath(t *testing.T) {
144144
}
145145
for _, tt := range tests {
146146
t.Run(tt.desc, func(t *testing.T) {
147-
_, err := tt.dp.AddDataPath(tt.dpName)
147+
err := tt.dp.AddDataPath(tt.dpName)
148148
if err != nil {
149149
t.Errorf("getting an error while trying to get version %q", err.Error())
150150
}
@@ -170,7 +170,7 @@ func TestDelDataPath(t *testing.T) {
170170
}
171171
for _, tt := range tests {
172172
t.Run(tt.desc, func(t *testing.T) {
173-
_, err := tt.dp.DelDataPath(tt.dpName)
173+
err := tt.dp.DelDataPath(tt.dpName)
174174
if err != nil {
175175
t.Errorf("getting an error while trying to get version %q", err.Error())
176176
}

0 commit comments

Comments
 (0)