We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e04061e commit f2a5e31Copy full SHA for f2a5e31
pytest.ini
@@ -1,3 +1,3 @@
1
[pytest]
2
markers =
3
- temporal: mark a test thats tests temporal types.
+ temporal: mark a test that tests temporal types.
src/glue.c
@@ -511,7 +511,7 @@ int64_t microseconds_to_nanos(int64_t microseconds) {
511
int64_t seconds_to_nanos(int64_t seconds) { return seconds * 1000000 * 1000; }
512
513
int64_t minutes_to_nanos(int64_t minutes) {
514
- return seconds_to_nanos(minutes * (int64_t)60);
+ return seconds_to_nanos(minutes * 60);
515
}
516
517
int64_t hours_to_nanos(int64_t hours) { return minutes_to_nanos(hours * 60); }
0 commit comments