Whitespace tweak in a btest, no other change

This commit is contained in:
Christian Kreibich 2021-09-27 13:42:48 -07:00
parent 0e5e01f65f
commit b7603faf3d

View file

@ -71,28 +71,28 @@ event zeek_init()
ct = 0;
for ( c in t2 )
{
++ct;
++ct;
}
test_case( "iterate over table", ct == 0 );
ct = 0;
for ( c in t3 )
{
++ct;
++ct;
}
test_case( "iterate over table", ct == 0 );
ct = 0;
for ( [c1, c2, c3] in t6 )
{
++ct;
++ct;
}
test_case( "iterate over table", ct == 2 );
ct = 0;
for ( [c1, c2, c3] in t7 )
{
++ct;
++ct;
}
test_case( "iterate over table", ct == 0 );