@@ -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 , "c9444988-2761-4b39-8c4c-eb5fdaaa8dca " )
2828
2929 // Revert the commit that added urllib3.
30- commitID := "1f4f4f7d-7883-400e-b2ad-a5803c018ecd "
30+ commitID := "d105e865-d12f-4c42-a1a0-6767590d87da "
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:" )
@@ -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 , "c9444988-2761-4b39-8c4c-eb5fdaaa8dca " )
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 := "d105e865-d12f-4c42-a1a0-6767590d87da "
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" , "c9444988-2761-4b39-8c4c-eb5fdaaa8dca " )
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" , "d105e865-d12f-4c42-a1a0-6767590d87da " , "-o" , "json" )
162162 cp .Expect (`{"current_commit_id":` , e2e .RuntimeSourcingTimeoutOpt )
163163 cp .ExpectExitCode (0 )
164164 AssertValidJSON (suite .T (), cp )
0 commit comments