From 17f1cdef0f115885963e354be67b1735355788de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Star=C3=BD=20Novotn=C3=BD?= <witiko@mail.muni.cz> Date: Tue, 9 Apr 2024 22:49:28 +0200 Subject: [PATCH] Demonstrate support for integer values in sample exam answers --- .github/workflows/compile.yml | 2 +- sample-exam/questions.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 0908f51..8c7b380 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -10,4 +10,4 @@ jobs: uses: istqborg/istqb_product_base/.github/workflows/compile.yml@main with: # A Git ref in the repository istqb_product_base, which should be used for the LaTeX+Markdown template - base-version: main + base-version: feat/allow-integer-answers diff --git a/sample-exam/questions.yml b/sample-exam/questions.yml index 9144ac6..46ba53c 100644 --- a/sample-exam/questions.yml +++ b/sample-exam/questions.yml @@ -12,10 +12,10 @@ questions: number-of-points: 1 question: Which of the following statements describe a valid test objective? answers: - a: To prove that there are no unfixed defects in the system under test - b: To prove that there will be no failures after the implementation of the system into production - c: To reduce the risk level of the test object and to build confidence in the quality level - d: To verify that there are no untested combinations of inputs + a: 1 + b: 2 + c: 3 + d: 4 correct: c explanation: | a) Is not correct. It is impossible to prove that there are no defects anymore in the system under test.