Skip to content

Commit f2a5e31

Browse files
Apply suggestions from code review
Co-authored-by: János Benjamin Antal <[email protected]>
1 parent e04061e commit f2a5e31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[pytest]
22
markers =
3-
temporal: mark a test thats tests temporal types.
3+
temporal: mark a test that tests temporal types.

src/glue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ int64_t microseconds_to_nanos(int64_t microseconds) {
511511
int64_t seconds_to_nanos(int64_t seconds) { return seconds * 1000000 * 1000; }
512512

513513
int64_t minutes_to_nanos(int64_t minutes) {
514-
return seconds_to_nanos(minutes * (int64_t)60);
514+
return seconds_to_nanos(minutes * 60);
515515
}
516516

517517
int64_t hours_to_nanos(int64_t hours) { return minutes_to_nanos(hours * 60); }

0 commit comments

Comments
 (0)