@@ -67,7 +67,7 @@ func (suite *CommitIntegrationTestSuite) TestCommitAtTimeChange() {
6767 ts := e2e .New (suite .T (), false )
6868 defer ts .Close ()
6969
70- ts .PrepareProjectAndBuildScript ("ActiveState-CLI/Commit-Test-A" , "7a1b416e-c17f-4d4a-9e27-cbad9e8f5655 " )
70+ ts .PrepareProjectAndBuildScript ("ActiveState-CLI/Commit-Test-A" , "2ab50eba-4410-4be2-ba9d-c04ebeda640d " )
7171
7272 proj , err := project .FromPath (ts .Dirs .Work )
7373 suite .NoError (err , "Error loading project" )
@@ -76,11 +76,11 @@ func (suite *CommitIntegrationTestSuite) TestCommitAtTimeChange() {
7676 suite .Require ().NoError (err ) // verify validity
7777
7878 // Update top-level at_time variable.
79- dateTime := "2023-06-21T12 :34:56Z"
79+ dateTime := "2025-12-11T12 :34:56Z"
8080 buildScriptFile := filepath .Join (proj .Dir (), constants .BuildScriptFileName )
8181 contents , err := fileutils .ReadFile (buildScriptFile )
8282 suite .Require ().NoError (err )
83- contents = bytes .Replace (contents , []byte ("2023-06-22T21:56:10Z " ), []byte (dateTime ), 1 )
83+ contents = bytes .Replace (contents , []byte ("2025-12-10T17:03:26Z " ), []byte (dateTime ), 1 )
8484 suite .Require ().NoError (fileutils .WriteFile (buildScriptFile , contents ))
8585 suite .Require ().Contains (string (fileutils .ReadFileUnsafe (filepath .Join (proj .Dir (), constants .BuildScriptFileName ))), dateTime )
8686
@@ -152,14 +152,16 @@ func (suite *CommitIntegrationTestSuite) TestCommitSkipValidation() {
152152 suite .Require ().NoError (fileutils .WriteFile (scriptPath , data ))
153153
154154 cp := ts .Spawn ("commit" )
155- cp .Expect ("solver_version in body should be" )
155+ cp .Expect ("solver_version" )
156+ cp .Expect ("should be" )
156157 cp .ExpectExitCode (1 )
157158
158159 cp = ts .Spawn ("commit" , "--skip-validation" )
159160 cp .ExpectExitCode (0 )
160161
161162 cp = ts .Spawn ("refresh" )
162- cp .Expect ("solver_version in body should be" )
163+ cp .Expect ("solver_version" )
164+ cp .Expect ("should be" )
163165 cp .ExpectExitCode (1 )
164166}
165167
0 commit comments