Skip to content

Commit ac9cdae

Browse files
nordicjmrlubos
authored andcommitted
scripts: tests: partition_manager: Use other dummy config names
Uses config names that are already in the allow list Signed-off-by: Jamie McCrae <[email protected]>
1 parent 5bda9c2 commit ac9cdae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/tests/partition_manager_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,8 +430,8 @@ def test_that_offset_and_end_of_first_partition_are_correct_when_aligning_partit
430430
assert offset == 600
431431

432432
for l in [
433-
lambda: get_required_offset(align={'end': ['CONFIG_VAR']}, start=0, size=1000, move_up=False),
434-
lambda: get_required_offset(align={'start': ['CONFIG_VAR']}, start=0, size=1000, move_up=False),
433+
lambda: get_required_offset(align={'end': ['CONFIG_FOO']}, start=0, size=1000, move_up=False),
434+
lambda: get_required_offset(align={'start': ['CONFIG_FOO']}, start=0, size=1000, move_up=False),
435435
lambda: get_required_offset(align={'start': [[2]]}, start=0, size=1000, move_up=False)
436436
]:
437437
with pytest.raises(TypeError):

0 commit comments

Comments
 (0)