Skip to content

Commit

Permalink
Issue #IQ-545 fix: updated test case
Browse files Browse the repository at this point in the history
  • Loading branch information
krgauraw committed Aug 7, 2023
1 parent adb2b2e commit 03a27e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

}
Expand Down

0 comments on commit 03a27e1

Please sign in to comment.