diff options
Diffstat (limited to 'table/path_test.go')
-rw-r--r-- | table/path_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/table/path_test.go b/table/path_test.go index 3cd32d89..b779c84b 100644 --- a/table/path_test.go +++ b/table/path_test.go @@ -114,7 +114,7 @@ func TestPathSetWithdraw(t *testing.T) { pd := &PathDefault{} wd := true pd.setWithdraw(wd) - r_wd := pd.isWithdraw() + r_wd := pd.IsWithdraw() assert.Equal(t, r_wd, wd) } @@ -122,7 +122,7 @@ func TestPathGetWithdaw(t *testing.T) { pd := &PathDefault{} wd := false pd.setWithdraw(wd) - r_wd := pd.isWithdraw() + r_wd := pd.IsWithdraw() assert.Equal(t, r_wd, wd) } |