aboutsummaryrefslogtreecommitdiffstats
path: root/solo_tool_cli_integrationtest.py
diff options
context:
space:
mode:
authorEddy Pedroni <eddy@0xf7.com>2022-02-03 20:20:30 +0100
committerEddy Pedroni <eddy@0xf7.com>2022-02-03 20:20:30 +0100
commitb609b4ce55104c77a3f69366874a3e25e3061172 (patch)
treedb0095a810acc63d34e1719f59fca668fa693bf0 /solo_tool_cli_integrationtest.py
parent6debe39546e62d5796f22db2388341ae9132042d (diff)
Added AB toggle button to MIDI interface
Diffstat (limited to 'solo_tool_cli_integrationtest.py')
-rw-r--r--solo_tool_cli_integrationtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/solo_tool_cli_integrationtest.py b/solo_tool_cli_integrationtest.py
index 9134dcf..25ef131 100644
--- a/solo_tool_cli_integrationtest.py
+++ b/solo_tool_cli_integrationtest.py
@@ -27,7 +27,7 @@ def mockMidi(soloTool):
@pytest.fixture
def uut(soloTool, mockMidi):
- return SoloToolCLI("test_session.json", soloToolOverride=soloTool, midiOverride=mockMidi)
+ return SoloToolCLI("test_session.json", soloToolOverride=soloTool, midiOverride=mockMidi, tickEnable=False)
def test_songSelection(uut, soloTool, mockPlayer):
expectedOutput = """\
@@ -56,7 +56,6 @@ Songs:
uut.input("song")
-
assert buf.getvalue() == expectedOutput
def test_connectMidi(uut, mockMidi):
@@ -73,3 +72,4 @@ Connecting to MIDI device...
assert mockMidi.connected
assert buf.getvalue() == expectedOutput
+