mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 13:39:17 +02:00
6 lines
142 B
Python
6 lines
142 B
Python
from . import utils as test_utils
|
|
|
|
|
|
def test_to_api_date(now):
|
|
|
|
assert test_utils.to_api_date(now) == now.isoformat().split("+")[0] + "Z"
|