diff --git a/quml-migrator/src/test/scala/org/sunbird/job/quml/migrator/helpers/QuestionMigratorSpec.scala b/quml-migrator/src/test/scala/org/sunbird/job/quml/migrator/helpers/QuestionMigratorSpec.scala index dc4bc5f9..448afb8b 100644 --- a/quml-migrator/src/test/scala/org/sunbird/job/quml/migrator/helpers/QuestionMigratorSpec.scala +++ b/quml-migrator/src/test/scala/org/sunbird/job/quml/migrator/helpers/QuestionMigratorSpec.scala @@ -76,7 +76,8 @@ class QuestionMigratorSpec extends FlatSpec with BeforeAndAfterAll with Matchers val result: ObjectData = new TestQuestionMigrator().migrateQuestion(data).getOrElse(new ObjectData("do_234", Map())) result.identifier should be("do_123") result.metadata.contains("complexityLevel") should be(true) - result.metadata.contains("bloomsLevel") should be(false) + result.metadata.contains("bloomsLevel") should be(true) + result.metadata.get("bloomsLevel").get should be(null) } }