-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix timestamp when asserting package versions.
- Loading branch information
1 parent
8158813
commit 3fbb74c
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -656,13 +656,15 @@ func (suite *PackageIntegrationTestSuite) TestChangeSummaryShowsAddedForUpdate() | |
|
||
ts.PrepareProject("ActiveState-CLI/small-python", "5a1e49e5-8ceb-4a09-b605-ed334474855b") | ||
|
||
cp = ts.Spawn("install", "[email protected]") | ||
ts := "--ts=2024-08-15T20:07:00.000Z" | ||
Check failure on line 659 in test/integration/package_int_test.go GitHub Actions / ubuntu-latest
Check failure on line 659 in test/integration/package_int_test.go GitHub Actions / ubuntu-latest
Check failure on line 659 in test/integration/package_int_test.go GitHub Actions / macos-12
|
||
|
||
cp = ts.Spawn("install", "[email protected]", ts) | ||
Check failure on line 661 in test/integration/package_int_test.go GitHub Actions / ubuntu-latest
|
||
cp.Expect("Added: language/python/jinja2") | ||
cp.ExpectExitCode(0) | ||
|
||
cp = ts.Spawn("install", "[email protected]") | ||
cp = ts.Spawn("install", "[email protected]", ts) | ||
Check failure on line 665 in test/integration/package_int_test.go GitHub Actions / ubuntu-latest
|
||
cp.Expect("Installing [email protected] includes 1 direct dep") | ||
cp.Expect("└─ markupsafe@3.0.1") | ||
cp.Expect("└─ markupsafe@2.1.5") | ||
cp.Expect("Updated: language/python/jinja2") | ||
cp.ExpectExitCode(0) | ||
} | ||
|