Skip to content

Commit dec3af7

Browse files
author
solomon.legodi
committed
Fix LO IDs and section numbering in chapter 5
- Renamed LO-5.1.5.1 to LO-5.1.4.1 (Assigning Dictionary Variables) - Renamed LO-5.1.5.2 to LO-5.1.4.2 (Accessing Dictionary Variables) - Renamed LO-5.1.6 to LO-5.1.5 (Built-In Variables) - Updated learning_objectives.md with correct links - All section numbers now match correctly
1 parent 633157e commit dec3af7

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

LOs.csv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ LO-5.1.2.1,(K1),Recall how to define global variables and where they can be acce
125125
LO-5.1.2.2,(K1),Recall how to define suite variables and where they can be accessed,,,
126126
LO-5.1.2.3,(K1),Recall how to define test|task variables and where they can be accessed,,,
127127
LO-5.1.2.4,(K1),Recall how to define local variables and where they can be accessed,,,
128+
LO-5.1.4.1,(K1),Recall that assignments to `&{dict}` variables automatically convert values to Robot Framework Dictionaries and enable dot-access,,,
128129
LO-5.1.4.2,(K1),Recall that `@{list}` unpacks the values of a list variable when accessed,,,
129-
LO-5.1.5.1,(K1),Recall that assignments to `&{dict}` variables automatically convert values to Robot Framework Dictionaries and enable dot-access,,,
130-
LO-5.1.5.2,(K1),Recall that `&{dict}` unpacks to multiple key=value pairs when accessed,,,
131-
LO-5.1.6,(K1),Recall that Robot Framework provides access to execution information via Built-In variables,,,
130+
LO-5.1.4.2,(K1),Recall that `&{dict}` unpacks to multiple key=value pairs when accessed,,,
131+
LO-5.1.5,(K1),Recall that Robot Framework provides access to execution information via Built-In variables,,,
132132
LO-5.2.1,(K2),Understand the purpose and basic concept of IF-Statements,,,
133133
LO-5.2.4,(K2),Understand the purpose and basic concept of FOR Loops,,,
134134
LO-5.2.5,(K2),Understand the purpose and basic concept of WHILE Loops,,,

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,11 +270,11 @@
270270
- LO-5.1.4.2 (K1) Recall that `@{list}` unpacks the values of a list variable when accessed
271271
- [`5.1.4 Dict-Like`](website/docs/chapter-05/01_advanced_variables.md#514-dict-like)
272272
- [`5.1.4.1 Assigning Dictionary Variables`](website/docs/chapter-05/01_advanced_variables.md#5141-assigning-dictionary-variables)
273-
- LO-5.1.5.1 (K1) Recall that assignments to `&{dict}` variables automatically convert values to Robot Framework Dictionaries and enable dot-access
273+
- LO-5.1.4.1 (K1) Recall that assignments to `&{dict}` variables automatically convert values to Robot Framework Dictionaries and enable dot-access
274274
- [`5.1.4.2 Accessing Dictionary Variables`](website/docs/chapter-05/01_advanced_variables.md#5142-accessing-dictionary-variables)
275-
- LO-5.1.5.2 (K1) Recall that `&{dict}` unpacks to multiple key=value pairs when accessed
275+
- LO-5.1.4.2 (K1) Recall that `&{dict}` unpacks to multiple key=value pairs when accessed
276276
- [`5.1.5 Built-In Variables`](website/docs/chapter-05/01_advanced_variables.md#515-built-in-variables)
277-
- LO-5.1.6 (K1) Recall that Robot Framework provides access to execution information via Built-In variables
277+
- LO-5.1.5 (K1) Recall that Robot Framework provides access to execution information via Built-In variables
278278
- [`5.2 Control Structures`](website/docs/chapter-05/02_control_structures.md)
279279
- [`5.2.1 IF Statements`](website/docs/chapter-05/02_control_structures.md#521-if-statements)
280280
- LO-5.2.1 (K2) Understand the purpose and basic concept of IF-Statements

website/docs/chapter-05/01_advanced_variables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ However, the ampersand-syntax `&{var}` has different meanings when assigning val
351351

352352
::::lo[Learning Objectives]
353353

354-
:::K1[LO-5.1.5.1]
354+
:::K1[LO-5.1.4.1]
355355

356356
Recall that assignments to `&{dict}` variables automatically convert values to Robot Framework Dictionaries and enable dot-access
357357

@@ -377,7 +377,7 @@ In the following example, the first assignment to `&{participant}` causes an aut
377377

378378
::::lo[Learning Objectives]
379379

380-
:::K1[LO-5.1.5.2]
380+
:::K1[LO-5.1.4.2]
381381

382382
Recall that `&{dict}` unpacks to multiple key=value pairs when accessed
383383

@@ -419,7 +419,7 @@ The dictionary keys act as the argument names and the values as the argument val
419419

420420
::::lo[Learning Objectives]
421421

422-
:::K1[LO-5.1.6]
422+
:::K1[LO-5.1.5]
423423

424424
Recall that Robot Framework provides access to execution information via Built-In variables
425425

website/docs/learning_objectives.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@
127127
| [`LO-5.1.2.2`](chapter-05/01_advanced_variables.md#5122--suite-scope) | K1 | Recall how to define suite variables and where they can be accessed |
128128
| [`LO-5.1.2.3`](chapter-05/01_advanced_variables.md#5123--testtask-scope) | K1 | Recall how to define test\|task variables and where they can be accessed |
129129
| [`LO-5.1.2.4`](chapter-05/01_advanced_variables.md#5124--local-scope) | K1 | Recall how to define local variables and where they can be accessed |
130+
| [`LO-5.1.4.1`](chapter-05/01_advanced_variables.md#5141-assigning-dictionary-variables) | K1 | Recall that assignments to `&{dict}` variables automatically convert values to Robot Framework Dictionaries and enable dot-access |
130131
| [`LO-5.1.4.2`](chapter-05/01_advanced_variables.md#5142-accessing-dictionary-variables) | K1 | Recall that `@{list}` unpacks the values of a list variable when accessed |
131-
| [`LO-5.1.5.1`](chapter-05/01_advanced_variables.md#5151-assigning-dictionary-variables) | K1 | Recall that assignments to `&{dict}` variables automatically convert values to Robot Framework Dictionaries and enable dot-access |
132-
| [`LO-5.1.5.2`](chapter-05/01_advanced_variables.md#5152-accessing-dictionary-variables) | K1 | Recall that `&{dict}` unpacks to multiple key=value pairs when accessed |
133-
| [`LO-5.1.6`](chapter-05/01_advanced_variables.md#516-built-in-variables) | K1 | Recall that Robot Framework provides access to execution information via Built-In variables |
132+
| [`LO-5.1.4.2`](chapter-05/01_advanced_variables.md#5142-accessing-dictionary-variables) | K1 | Recall that `&{dict}` unpacks to multiple key=value pairs when accessed |
133+
| [`LO-5.1.5`](chapter-05/01_advanced_variables.md#515-built-in-variables) | K1 | Recall that Robot Framework provides access to execution information via Built-In variables |
134134
| [`LO-5.2.1`](chapter-05/02_control_structures.md#521-if-statements) | K2 | Understand the purpose and basic concept of IF-Statements |
135135
| [`LO-5.2.4`](chapter-05/02_control_structures.md#524-for-loops) | K2 | Understand the purpose and basic concept of FOR Loops |
136136
| [`LO-5.2.5`](chapter-05/02_control_structures.md#525-while-loops) | K2 | Understand the purpose and basic concept of WHILE Loops |

0 commit comments

Comments
 (0)