mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
Whitespace tweak in a btest, no other change
This commit is contained in:
parent
0e5e01f65f
commit
b7603faf3d
1 changed files with 4 additions and 4 deletions
|
@ -71,28 +71,28 @@ event zeek_init()
|
||||||
ct = 0;
|
ct = 0;
|
||||||
for ( c in t2 )
|
for ( c in t2 )
|
||||||
{
|
{
|
||||||
++ct;
|
++ct;
|
||||||
}
|
}
|
||||||
test_case( "iterate over table", ct == 0 );
|
test_case( "iterate over table", ct == 0 );
|
||||||
|
|
||||||
ct = 0;
|
ct = 0;
|
||||||
for ( c in t3 )
|
for ( c in t3 )
|
||||||
{
|
{
|
||||||
++ct;
|
++ct;
|
||||||
}
|
}
|
||||||
test_case( "iterate over table", ct == 0 );
|
test_case( "iterate over table", ct == 0 );
|
||||||
|
|
||||||
ct = 0;
|
ct = 0;
|
||||||
for ( [c1, c2, c3] in t6 )
|
for ( [c1, c2, c3] in t6 )
|
||||||
{
|
{
|
||||||
++ct;
|
++ct;
|
||||||
}
|
}
|
||||||
test_case( "iterate over table", ct == 2 );
|
test_case( "iterate over table", ct == 2 );
|
||||||
|
|
||||||
ct = 0;
|
ct = 0;
|
||||||
for ( [c1, c2, c3] in t7 )
|
for ( [c1, c2, c3] in t7 )
|
||||||
{
|
{
|
||||||
++ct;
|
++ct;
|
||||||
}
|
}
|
||||||
test_case( "iterate over table", ct == 0 );
|
test_case( "iterate over table", ct == 0 );
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue