From 2d24ab520901a206f918602bc30e0209b432edb6 Mon Sep 17 00:00:00 2001 From: sunil-lakshman <104969541+sunil-lakshman@users.noreply.github.com> Date: Mon, 23 Jun 2025 14:58:33 +0530 Subject: [PATCH] Fixed sanity testcases --- test/sanity-check/api/locale-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sanity-check/api/locale-test.js b/test/sanity-check/api/locale-test.js index 7623c661..a6f4fd9d 100644 --- a/test/sanity-check/api/locale-test.js +++ b/test/sanity-check/api/locale-test.js @@ -98,8 +98,8 @@ describe('Locale api Test', () => { makeLocale('hi-in') .fetch() .then((locale) => { - // locale.fallback_locale = 'en-at' - return locale.update({ locale: { fallback_locale: 'en-at' } }) + locale.fallback_locale = 'en-at' + return locale.update() }) .then((locale) => { expect(locale.code).to.be.equal('hi-in')