Skip to content

Commit

Permalink
fix: update tests that are not working anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
knowbased committed Sep 6, 2024
1 parent d353ae6 commit 372f4e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ MergeRequestDurationMetricTest >> testCalculate [
result := mergeRequestDuration calculate.

"Then"
self assert: result equals: 10 hours
self assert: result equals: (10 * 60 * 60)
]

{ #category : #tests }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ TimeBetweenCommitMetricTest >> testCalculate [
result := timeBetweenCommit calculate.

"Then"
self assert: result equals: 23 hours
self assert: result equals: (23 hours asSeconds)
]

{ #category : #tests }
Expand Down

0 comments on commit 372f4e2

Please sign in to comment.