Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_vagrant.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def test_streaming_output(vm_dir):
"""
Test streaming output of up or reload.
"""
test_string = "Waiting for machine to boot."
test_string = "Machine already provisioned"
v = vagrant.Vagrant(vm_dir)

with pytest.raises(subprocess.CalledProcessError):
Expand Down
1 change: 0 additions & 1 deletion vagrant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,6 @@ def _stream_vagrant_command(self, args):
env=self.env,
stdout=subprocess.PIPE,
stderr=err_fh,
bufsize=1,
)

# Iterate over output lines.
Expand Down