Skip to content

Commit 5aa000b

Browse files
author
Kevin J Walters
committed
Prefixing all classes for testing with Test_. adafruit#3
1 parent d6efee7 commit 5aa000b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/MIDIMessage_unittests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import unittest
2424
from unittest.mock import Mock, MagicMock
2525

26+
2627
import os
2728
verbose = int(os.getenv('TESTVERBOSE',2))
2829

@@ -49,7 +50,7 @@
4950

5051
### TODO - re work these when running status is implemented
5152

52-
class MIDIMessage_from_message_byte_tests(unittest.TestCase):
53+
class Test_MIDIMessage_from_message_byte_tests(unittest.TestCase):
5354
def test_NoteOn_basic(self):
5455
data = bytes([0x90, 0x30, 0x7f])
5556
ichannel = 0

0 commit comments

Comments
 (0)