mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
tools: make v test-cleancode test everything by default (#10050)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
fn test_channel_try_unbuffered() {
|
||||
ch := chan int{}
|
||||
for z in 5..8 {
|
||||
for z in 5 .. 8 {
|
||||
if ch.try_push(z) == .not_ready {
|
||||
assert z == 5
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user