summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-05-25 16:57:59 -0700
committerBen Pfaff <blp@ovn.org>2018-06-11 15:31:53 -0700
commitaa141053a5ae66567521fea3a9a9b65cd5a46a74 (patch)
tree0f49ad41ace04364b548d6d6e9ae5f238acf7f17 /tests
parent7513bb6f597e4407f2a2d045dad95490b9e2d343 (diff)
downloadopenvswitch-aa141053a5ae66567521fea3a9a9b65cd5a46a74.tar.gz
rstp, stp: Remove tabs from output.
OVS uses spaces for indentation in source code and it makes sense for it to also use spaces for indentation in output. Spaces also consume less horizontal space in output, which often makes it easier to read. This commit transitions one part of output from tabs to spaces and updates appropriate parts of the tests to match. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Justin Pettit <jpettit@ovn.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/stp.at14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/stp.at b/tests/stp.at
index 9550f72b5..3d85acdb9 100644
--- a/tests/stp.at
+++ b/tests/stp.at
@@ -617,10 +617,10 @@ ovs-appctl time/stop
ovs-appctl time/warp 31000 1000
AT_CHECK([ovs-appctl stp/show br0 | grep p1], [0], [dnl
- p1 designated forwarding 19 128.1
+ p1 designated forwarding 19 128.1
])
AT_CHECK([ovs-appctl stp/show br0 | grep p2], [0], [dnl
- p2 designated forwarding 19 128.2
+ p2 designated forwarding 19 128.2
])
# add a stp port
@@ -634,10 +634,10 @@ ovs-appctl netdev-dummy/set-admin-state p3 down
# We should not show the p3 because its link-state is down
AT_CHECK([ovs-appctl stp/show br0 | grep p1], [0], [dnl
- p1 designated forwarding 19 128.1
+ p1 designated forwarding 19 128.1
])
AT_CHECK([ovs-appctl stp/show br0 | grep p2], [0], [dnl
- p2 designated forwarding 19 128.2
+ p2 designated forwarding 19 128.2
])
AT_CHECK([ovs-appctl stp/show br0 | grep p3], [1], [dnl
])
@@ -645,13 +645,13 @@ AT_CHECK([ovs-appctl stp/show br0 | grep p3], [1], [dnl
ovs-appctl netdev-dummy/set-admin-state p3 up
AT_CHECK([ovs-appctl stp/show br0 | grep p1], [0], [dnl
- p1 designated forwarding 19 128.1
+ p1 designated forwarding 19 128.1
])
AT_CHECK([ovs-appctl stp/show br0 | grep p2], [0], [dnl
- p2 designated forwarding 19 128.2
+ p2 designated forwarding 19 128.2
])
AT_CHECK([ovs-appctl stp/show br0 | grep p3], [0], [dnl
- p3 designated listening 19 128.3
+ p3 designated listening 19 128.3
])