userNotification.leds.ledOffPeriod = 125;
- assert_equals(userNotification.leds.ledOffPeriod, newValue, "userNotification.leds.ledOffPeriod value after set");
+ assert_equals(userNotification.leds.ledOffPeriod, 125, "userNotification.leds.ledOffPeriod value after set");
notificationDict.ledOffPeriod = 100;
userNotification = new tizen.UserNotification(userNotificationType, titleToSet, notificationDict);
assert_equals(userNotification.leds.ledOnPeriod, 0, "userNotification.leds.ledOnPeriod default value");
userNotification.leds.ledOnPeriod = 125;
- assert_equals(userNotification.leds.ledOnPeriod, newValue, "userNotification.leds.ledOnPeriod value after set");
+ assert_equals(userNotification.leds.ledOnPeriod, 125, "userNotification.leds.ledOnPeriod value after set");
notificationDict.actions.ledOnPeriod = 100;
userNotification = new tizen.UserNotification(userNotificationType, titleToSet, notificationDict);