mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
chore: reduce the log output of skipped tests (#7520)
With the introduction of the workspace proxy tests there was a lot of output if a test was eventually skipped.
This commit is contained in:
@ -34,7 +34,7 @@ func TestMigrate(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
if testing.Short() {
|
||||
t.Skip()
|
||||
t.SkipNow()
|
||||
return
|
||||
}
|
||||
|
||||
@ -198,7 +198,7 @@ func TestMigrateUpWithFixtures(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
if testing.Short() {
|
||||
t.Skip()
|
||||
t.SkipNow()
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user