Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
skip: daylight savings issues
  • Loading branch information
mtojek committed Mar 10, 2025
commit f6283ed54b952150f75e6d6f9af5036b88e9837e
2 changes: 2 additions & 0 deletions coderd/database/querier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3301,6 +3301,8 @@ func TestGetUserStatusCounts(t *testing.T) {

t.Run("User deleted during query range", func(t *testing.T) {
t.Parallel()
t.Skip("https://github.com/coder/internal/issues/464")

db, _ := dbtestutil.NewDB(t)
ctx := testutil.Context(t, testutil.WaitShort)

Expand Down
3 changes: 2 additions & 1 deletion coderd/insights_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,14 +226,15 @@ func Test_parseInsightsInterval_week(t *testing.T) {
},
wantOk: true,
},
/* FIXME: daylight savings issue
{
name: "6 days are acceptable",
args: args{
startTime: sixDaysAgo.Format(layout),
endTime: stripTime(thisHour).Format(layout),
},
wantOk: true,
},
},*/
{
name: "Shorter than a full week",
args: args{
Expand Down
Loading