Skip to content

Commit b3aebd8

Browse files
committed
update datetime strings to work with lower versions of python
1 parent f7adefd commit b3aebd8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/unit_tests/containers/test_containers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
}
107107
}
108108
},
109-
"created_at": "2023-01-01T00:00:00Z"
109+
"created_at": "2023-01-01T00:00:00+00:00"
110110
}
111111

112112
# Sample compute resources data
@@ -127,15 +127,15 @@
127127
SECRETS_DATA = [
128128
{
129129
"name": SECRET_NAME,
130-
"created_at": "2023-01-01T00:00:00Z"
130+
"created_at": "2023-01-01T00:00:00+00:00"
131131
}
132132
]
133133

134134
# Sample registry credentials data
135135
REGISTRY_CREDENTIALS_DATA = [
136136
{
137137
"name": REGISTRY_CREDENTIAL_NAME,
138-
"created_at": "2023-01-01T00:00:00Z"
138+
"created_at": "2023-01-01T00:00:00+00:00"
139139
}
140140
]
141141

@@ -150,7 +150,7 @@
150150
{
151151
"id": "replica-1",
152152
"status": "running",
153-
"started_at": "2023-01-01T00:00:00Z"
153+
"started_at": "2023-01-01T00:00:00+00:00"
154154
}
155155
]
156156
}

0 commit comments

Comments
 (0)