diff options
Diffstat (limited to 'table/table_test.go')
-rw-r--r-- | table/table_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/table/table_test.go b/table/table_test.go index 81e377f6..407fbe0a 100644 --- a/table/table_test.go +++ b/table/table_test.go @@ -88,7 +88,7 @@ func TestTableSetDestinations(t *testing.T) { destinations[tableKey] = dest } ipv4t.setDestinations(destinations) - ds := ipv4t.getDestinations() + ds := ipv4t.GetDestinations() assert.Equal(t, ds, destinations) } func TestTableGetDestinations(t *testing.T) { @@ -103,7 +103,7 @@ func TestTableGetDestinations(t *testing.T) { destinations[tableKey] = dest } ipv4t.setDestinations(destinations) - ds := ipv4t.getDestinations() + ds := ipv4t.GetDestinations() assert.Equal(t, ds, destinations) } |