Skip to content

Commit

Permalink
enabled two testcases when short option is specified at go test.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryogrid committed Sep 13, 2024
1 parent e3d8142 commit 90a2f87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ func TestKeyDuplicateBTreePrallelTxnStrideFloat(t *testing.T) {

func TestKeyDuplicateBTreePrallelTxnStrideVarchar(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("skip this in short mode.")
}
//if testing.Short() {
// t.Skip("skip this in short mode.")
//}
testBTreeParallelTxnStrideRoot[string](t, types.Varchar)
}
Original file line number Diff line number Diff line change
Expand Up @@ -1357,8 +1357,8 @@ func TestKeyDuplicateSkipListPrallelTxnStrideFloat(t *testing.T) {

func TestKeyDuplicateSkipListPrallelTxnStrideVarchar(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("skip this in short mode.")
}
//if testing.Short() {
// t.Skip("skip this in short mode.")
//}
testSkipListParallelTxnStrideRoot[string](t, types.Varchar)
}

0 comments on commit 90a2f87

Please sign in to comment.