Commit f7bbd54f by Bjorn Neergaard

fix: trailing whitespace in test file

The `debug resolve` had an extra row included in its table, adding extra
whitespace. Also, remove a list that is discarded immediately.
parent 7cb5ea06
...@@ -108,7 +108,7 @@ class DebugResolveCommand(InitCommand): ...@@ -108,7 +108,7 @@ class DebugResolveCommand(InitCommand):
return 0 return 0
table = self.table([], style="compact") table = self.table(style="compact")
table.style.set_vertical_border_chars("", " ") table.style.set_vertical_border_chars("", " ")
rows = [] rows = []
...@@ -133,7 +133,6 @@ class DebugResolveCommand(InitCommand): ...@@ -133,7 +133,6 @@ class DebugResolveCommand(InitCommand):
row = [ row = [
"<c1>{}</c1>".format(pkg.complete_name), "<c1>{}</c1>".format(pkg.complete_name),
"<b>{}</b>".format(pkg.version), "<b>{}</b>".format(pkg.version),
"",
] ]
if not pkg.marker.is_any(): if not pkg.marker.is_any():
......
...@@ -30,8 +30,8 @@ Resolving dependencies... ...@@ -30,8 +30,8 @@ Resolving dependencies...
Resolution results: Resolution results:
msgpack-python 0.5.3 msgpack-python 0.5.3
cachy 0.2.0 cachy 0.2.0
""" """
assert expected == tester.io.fetch_output() assert expected == tester.io.fetch_output()
...@@ -60,8 +60,8 @@ Resolving dependencies... ...@@ -60,8 +60,8 @@ Resolving dependencies...
Resolution results: Resolution results:
pendulum 2.0.3 pendulum 2.0.3
demo 0.1.2 demo 0.1.2
""" """
assert expected == tester.io.fetch_output() assert expected == tester.io.fetch_output()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment