Skip to content

Commit 47bc397

Browse files
authored
Update test_thread_print_fstrings.py
`clk + led` -> `cnt + led`
1 parent 8628db4 commit 47bc397

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/extension/thread_/print_fstrings/test_thread_print_fstrings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
th_blink <= th_blink_9;
117117
end
118118
th_blink_9: begin
119-
$display("clk + led = %d", (CLK + LED));
119+
$display("cnt + led = %d", (CNT + LED));
120120
th_blink <= th_blink_10;
121121
end
122122
th_blink_10: begin
@@ -145,4 +145,4 @@ def test():
145145

146146
assert(expected_code == code)
147147

148-
test()
148+
test()

0 commit comments

Comments
 (0)