Fix typo in service checking script. 03/210303/1 accepted/tizen/unified/20190719.111642 submit/tizen/20190718.025630
authorjin-gyu.kim <jin-gyu.kim@samsung.com>
Thu, 18 Jul 2019 02:53:57 +0000 (11:53 +0900)
committerjin-gyu.kim <jin-gyu.kim@samsung.com>
Thu, 18 Jul 2019 02:54:02 +0000 (11:54 +0900)
- Fix typo in comparing 'SystemdService=' string.

Change-Id: Iee2440460f501325a2ea60c335b7b7a1f8a52453

test/new_service_test/check_new_service.sh

index 3470d1e49283d84be889620c80437945e6ffa5ce..7ae44e6a5a1fead7fb0f0bd5189d52e77e8f450c 100755 (executable)
@@ -41,7 +41,7 @@ function check_systemd_service
 function check_dbus_service
 {
        # skip dbus service which has SystemdService option.
-       if [ "$(cat $1 | grep 'SystemdService=')" == "" ]
+       if [ "$(cat $1 | grep 'SystemdService=')" != "" ]
        then
                return
        fi