Skip to content

Commit

Permalink
Typo update
Browse files Browse the repository at this point in the history
  • Loading branch information
mtaner committed Feb 13, 2025
1 parent 5a8854c commit 79a25d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sharding/test/copy_filter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func (t *CopyFilterTestSuite) TestUsesForceIndex() {
t.Require().Equal([]interface{}{t.shardingValue, t.paginationKeyCursor}, args)
}

func (t *CopyFilterTestSuite) TestHigherSpecifityOfIndexHintingPerTable() {
func (t *CopyFilterTestSuite) TestHigherSpecificityOfIndexHintingPerTable() {
t.filter.IndexConfigPerTable = map[string]sharding.IndexConfigPerTable{
"normaltable": {
IndexHint: "use",
Expand All @@ -179,7 +179,7 @@ func (t *CopyFilterTestSuite) TestHigherSpecifityOfIndexHintingPerTable() {
t.Require().Equal([]interface{}{t.shardingValue, t.paginationKeyCursor}, args)
}

func (t *CopyFilterTestSuite) TestHigherSpecifityOfIndexHintingPerTable2() {
func (t *CopyFilterTestSuite) TestHigherSpecificityOfIndexHintingPerTable2() {
t.filter.IndexConfigPerTable = map[string]sharding.IndexConfigPerTable{
"normaltable": {
IndexHint: "none",
Expand All @@ -205,7 +205,7 @@ func (t *CopyFilterTestSuite) TestHigherSpecifityOfIndexHintingPerTable2() {
t.Require().Equal([]interface{}{t.shardingValue, t.paginationKeyCursor}, args)
}

func (t *CopyFilterTestSuite) TestHigherSpecifityOfIndexHintingPerTable3() {
func (t *CopyFilterTestSuite) TestHigherSpecificityOfIndexHintingPerTable3() {
t.filter.IndexConfigPerTable = map[string]sharding.IndexConfigPerTable{
"normaltable": {
IndexHint: "none", // will override IndexHint from the higher level i.e. "force"
Expand Down

0 comments on commit 79a25d5

Please sign in to comment.