@@ -50,7 +50,7 @@ var _ = Describe("RedisGears commands", Label("gears"), func() {
5050 })
5151
5252 It ("should TFunctionLoad, TFunctionLoadArgs and TFunctionDelete " , Label ("gears" , "tfunctionload" ), func () {
53- SkipAfterRedisVersion (7.2 , "gears are not working in later versions" )
53+ SkipAfterRedisVersion (7.4 , "gears are not working in later versions" )
5454 resultAdd , err := client .TFunctionLoad (ctx , libCode ("lib1" )).Result ()
5555 Expect (err ).NotTo (HaveOccurred ())
5656 Expect (resultAdd ).To (BeEquivalentTo ("OK" ))
@@ -60,7 +60,7 @@ var _ = Describe("RedisGears commands", Label("gears"), func() {
6060 Expect (resultAdd ).To (BeEquivalentTo ("OK" ))
6161 })
6262 It ("should TFunctionList" , Label ("gears" , "tfunctionlist" ), func () {
63- SkipAfterRedisVersion (7.2 , "gears are not working in later versions" )
63+ SkipAfterRedisVersion (7.4 , "gears are not working in later versions" )
6464 resultAdd , err := client .TFunctionLoad (ctx , libCode ("lib1" )).Result ()
6565 Expect (err ).NotTo (HaveOccurred ())
6666 Expect (resultAdd ).To (BeEquivalentTo ("OK" ))
@@ -74,7 +74,7 @@ var _ = Describe("RedisGears commands", Label("gears"), func() {
7474 })
7575
7676 It ("should TFCall" , Label ("gears" , "tfcall" ), func () {
77- SkipAfterRedisVersion (7.2 , "gears are not working in later versions" )
77+ SkipAfterRedisVersion (7.4 , "gears are not working in later versions" )
7878 var resultAdd interface {}
7979 resultAdd , err := client .TFunctionLoad (ctx , libCode ("lib1" )).Result ()
8080 Expect (err ).NotTo (HaveOccurred ())
@@ -85,7 +85,7 @@ var _ = Describe("RedisGears commands", Label("gears"), func() {
8585 })
8686
8787 It ("should TFCallArgs" , Label ("gears" , "tfcallargs" ), func () {
88- SkipAfterRedisVersion (7.2 , "gears are not working in later versions" )
88+ SkipAfterRedisVersion (7.4 , "gears are not working in later versions" )
8989 var resultAdd interface {}
9090 resultAdd , err := client .TFunctionLoad (ctx , libCode ("lib1" )).Result ()
9191 Expect (err ).NotTo (HaveOccurred ())
@@ -97,7 +97,7 @@ var _ = Describe("RedisGears commands", Label("gears"), func() {
9797 })
9898
9999 It ("should TFCallASYNC" , Label ("gears" , "TFCallASYNC" ), func () {
100- SkipAfterRedisVersion (7.2 , "gears are not working in later versions" )
100+ SkipAfterRedisVersion (7.4 , "gears are not working in later versions" )
101101 var resultAdd interface {}
102102 resultAdd , err := client .TFunctionLoad (ctx , libCode ("lib1" )).Result ()
103103 Expect (err ).NotTo (HaveOccurred ())
@@ -108,7 +108,7 @@ var _ = Describe("RedisGears commands", Label("gears"), func() {
108108 })
109109
110110 It ("should TFCallASYNCArgs" , Label ("gears" , "TFCallASYNCargs" ), func () {
111- SkipAfterRedisVersion (7.2 , "gears are not working in later versions" )
111+ SkipAfterRedisVersion (7.4 , "gears are not working in later versions" )
112112 var resultAdd interface {}
113113 resultAdd , err := client .TFunctionLoad (ctx , libCode ("lib1" )).Result ()
114114 Expect (err ).NotTo (HaveOccurred ())
0 commit comments