Skip to content

Commit f8dc7c3

Browse files
committed
refactor: vars renaming in compat tests
1 parent 5e6c4dc commit f8dc7c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test-utils/test-utils.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,8 @@ func BringYdbCliToPod(podName, podNamespace string) {
205205
func ExecuteSimpleTableE2ETest(podName, podNamespace, storageEndpoint string, databasePath string) {
206206
tablePath := "testfolder/testtable"
207207

208+
tableCreatingInterval := time.Second * 10
209+
208210
Eventually(func(g Gomega) {
209211
args := []string{
210212
"-n", podNamespace,
@@ -219,7 +221,7 @@ func ExecuteSimpleTableE2ETest(podName, podNamespace, storageEndpoint string, da
219221
}
220222
output, _ := exec.Command("kubectl", args...).CombinedOutput()
221223
fmt.Println(string(output))
222-
}, Timeout, time.Second*10).Should(Succeed())
224+
}, Timeout, tableCreatingInterval).Should(Succeed())
223225

224226
argsInsert := []string{
225227
"-n", podNamespace,

0 commit comments

Comments
 (0)