From 1b218ce9cbb6f65b1b2c272f372563df43fea488 Mon Sep 17 00:00:00 2001 From: Sohan Kunkerkar Date: Mon, 23 Mar 2020 17:24:07 -0400 Subject: [PATCH] Fix ignition config for the instantiated unit test --- tests/positive/files/units.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/positive/files/units.go b/tests/positive/files/units.go index e8b5d0db2..07afce7cc 100644 --- a/tests/positive/files/units.go +++ b/tests/positive/files/units.go @@ -32,8 +32,8 @@ func CreateInstantiatedService() types.Test { "systemd": { "units": [ { - "name": "echo@.service" - "contents": "[Unit]\nDescription=f\n[Service]\nType=oneshot\nExecStart=/bin/echo %i\nRemainAfterExit=yes\n[Install]\nWantedBy=multi-user.target\n", + "name": "echo@.service", + "contents": "[Unit]\nDescription=f\n[Service]\nType=oneshot\nExecStart=/bin/echo %i\nRemainAfterExit=yes\n[Install]\nWantedBy=multi-user.target\n" }, { "enabled": true, @@ -42,7 +42,7 @@ func CreateInstantiatedService() types.Test { { "enabled": true, "name": "echo@foo.service" - }, + } ] } }`