Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ concurrency:
jobs:
build:
name: Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)
runs-on: ubuntu-20.04
runs-on:
group: vitess-ubuntu20

steps:
- name: Check if workflow needs to be skipped
Expand Down
3 changes: 2 additions & 1 deletion go/test/endtoend/reparent/newfeaturetest/reparent_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package newfeaturetest
import (
"context"
"strconv"
"strings"
"testing"
"time"

Expand Down Expand Up @@ -205,7 +206,7 @@ func TestFullStatus(t *testing.T) {

// fileNameFromPosition gets the file name from the position
func fileNameFromPosition(pos string) string {
return pos[0 : len(pos)-4]
return strings.Split(pos, ":")[0]
}

// rowNumberFromPosition gets the row number from the position
Expand Down