summaryrefslogtreecommitdiff
path: root/tests/bridge.at
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-05-25 17:03:05 -0700
committerBen Pfaff <blp@ovn.org>2018-06-11 15:31:59 -0700
commit7be29a47576dce715f9c8b2b4f673fa623728ed0 (patch)
tree188b3956ac0bcbc044c3dc5dc7792d31e4c3c585 /tests/bridge.at
parent44b8de5e403051faf37bdd7d6103a820449bb8c9 (diff)
downloadopenvswitch-7be29a47576dce715f9c8b2b4f673fa623728ed0.tar.gz
ofproto-dpif: 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/bridge.at')
-rw-r--r--tests/bridge.at20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/bridge.at b/tests/bridge.at
index 8b4e4d71d..1c3618563 100644
--- a/tests/bridge.at
+++ b/tests/bridge.at
@@ -11,10 +11,10 @@ OVS_VSWITCHD_START
add_of_ports br0 1 2
AT_CHECK([ovs-appctl dpif/show], [0], [dnl
dummy@ovs-dummy: hit:0 missed:0
- br0:
- br0 65534/100: (dummy-internal)
- p1 1/1: (dummy)
- p2 2/2: (dummy)
+ br0:
+ br0 65534/100: (dummy-internal)
+ p1 1/1: (dummy)
+ p2 2/2: (dummy)
])
# Delete p1 from the datapath with "ovs-dpctl del-if"
@@ -22,18 +22,18 @@ dummy@ovs-dummy: hit:0 missed:0
AT_CHECK([ovs-appctl dpctl/del-if dummy@ovs-dummy p1])
AT_CHECK([ovs-appctl dpif/show], [0], [dnl
dummy@ovs-dummy: hit:0 missed:0
- br0:
- br0 65534/100: (dummy-internal)
- p2 2/2: (dummy)
+ br0:
+ br0 65534/100: (dummy-internal)
+ p2 2/2: (dummy)
])
# Force reconfiguration and make sure that p1 got added back.
AT_CHECK([ovs-vsctl del-port p2])
AT_CHECK([ovs-appctl dpif/show], [0], [dnl
dummy@ovs-dummy: hit:0 missed:0
- br0:
- br0 65534/100: (dummy-internal)
- p1 1/1: (dummy)
+ br0:
+ br0 65534/100: (dummy-internal)
+ p1 1/1: (dummy)
])
OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
OVS_APP_EXIT_AND_WAIT([ovsdb-server])