@@ -24,10 +24,10 @@ func (suite *RevertIntegrationTestSuite) TestRevert() {
2424 defer ts .Close ()
2525
2626 namespace := "ActiveState-CLI/Revert"
27- ts .PrepareProject (namespace , "903bf49a-6719-47f0-ae70-450d69532ece " )
27+ ts .PrepareProject (namespace , "ca615135-ef95-4392-aff5-85b6c7132789 " )
2828
2929 // Revert the commit that added urllib3.
30- commitID := "1f4f4f7d-7883-400e-b2ad-a5803c018ecd "
30+ commitID := "c44885ee-af0e-4f52-b8ef-63c56fe255c6 "
3131 cp := ts .Spawn ("revert" , commitID )
3232 cp .Expect (fmt .Sprintf ("Operating on project %s" , namespace ))
3333 cp .Expect ("You are about to revert the following commit:" )
@@ -48,7 +48,7 @@ func (suite *RevertIntegrationTestSuite) TestRevert() {
4848 cp = ts .Spawn ("shell" , "Revert" )
4949 cp .ExpectInput (e2e .RuntimeSourcingTimeoutOpt )
5050 cp .SendLine ("python3" )
51- cp .Expect ("3.9.15 " )
51+ cp .Expect ("3.11.12 " )
5252 cp .SendLine ("import urllib3" )
5353 cp .Expect ("No module named 'urllib3'" )
5454 cp .SendLine ("import argparse" )
@@ -63,7 +63,7 @@ func (suite *RevertIntegrationTestSuite) TestRevertRemote() {
6363 ts := e2e .New (suite .T (), false )
6464 defer ts .Close ()
6565
66- ts .PrepareProject ("ActiveState-CLI/Revert" , "75ae9c67-df55-4a95-be6f-b7975e5bb523 " )
66+ ts .PrepareProject ("ActiveState-CLI/Revert" , "ca615135-ef95-4392-aff5-85b6c7132789 " )
6767
6868 cp := ts .Spawn ("config" , "set" , constants .AsyncRuntimeConfig , "true" )
6969 cp .ExpectExitCode (0 )
@@ -106,13 +106,13 @@ func (suite *RevertIntegrationTestSuite) TestRevertTo() {
106106 defer ts .Close ()
107107
108108 namespace := "ActiveState-CLI/Revert"
109- ts .PrepareProject (namespace , "903bf49a-6719-47f0-ae70-450d69532ece " )
109+ ts .PrepareProject (namespace , "ca615135-ef95-4392-aff5-85b6c7132789 " )
110110
111111 cp := ts .Spawn ("config" , "set" , constants .AsyncRuntimeConfig , "true" )
112112 cp .ExpectExitCode (0 )
113113
114114 // Revert the commit that added urllib3.
115- commitID := "1f4f4f7d-7883-400e-b2ad-a5803c018ecd "
115+ commitID := "c44885ee-af0e-4f52-b8ef-63c56fe255c6 "
116116 cp = ts .Spawn ("revert" , "--to" , commitID )
117117 cp .Expect (fmt .Sprintf ("Operating on project %s" , namespace ))
118118 cp .Expect ("You are about to revert to the following commit:" )
@@ -153,12 +153,12 @@ func (suite *RevertIntegrationTestSuite) TestJSON() {
153153 ts := e2e .New (suite .T (), false )
154154 defer ts .Close ()
155155
156- ts .PrepareProject ("ActiveState-CLI/Revert" , "903bf49a-6719-47f0-ae70-450d69532ece " )
156+ ts .PrepareProject ("ActiveState-CLI/Revert" , "ca615135-ef95-4392-aff5-85b6c7132789 " )
157157
158158 cp := ts .Spawn ("config" , "set" , constants .AsyncRuntimeConfig , "true" )
159159 cp .ExpectExitCode (0 )
160160
161- cp = ts .Spawn ("revert" , "--to" , "1f4f4f7d-7883-400e-b2ad-a5803c018ecd " , "-o" , "json" )
161+ cp = ts .Spawn ("revert" , "--to" , "c44885ee-af0e-4f52-b8ef-63c56fe255c6 " , "-o" , "json" )
162162 cp .Expect (`{"current_commit_id":` , e2e .RuntimeSourcingTimeoutOpt )
163163 cp .ExpectExitCode (0 )
164164 AssertValidJSON (suite .T (), cp )
0 commit comments