From 6f1e6ab8c02175812ae303fb80b19e48607711ce Mon Sep 17 00:00:00 2001 From: Daniel Schep Date: Fri, 2 Nov 2018 10:45:42 -0400 Subject: [PATCH] Fix integration test rollback was using a unix timestamp, but expects an ISO8601 timestamp it seems --- tests/simple-suite/tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/simple-suite/tests.js b/tests/simple-suite/tests.js index 70a420df3..84713c8a4 100644 --- a/tests/simple-suite/tests.js +++ b/tests/simple-suite/tests.js @@ -69,7 +69,7 @@ describe('Service Lifecyle Integration Test', () => { let timestamp; const listDeploys = execSync(`${serverlessExec} deploy list`); const output = listDeploys.toString(); - const match = output.match(new RegExp('Timestamp: (.+)')); + const match = output.match(new RegExp('Datetime: (.+)')); if (match) { timestamp = match[1]; }