Typo fixed, web link update.

pull/8/head^2
Ben Sartori 6 months ago
parent 312715845b
commit 3a11087296
  1. 2
      README.md
  2. 0
      tests/abstract_write_method_test.py
  3. 4
      tests/test_lednamebadge_api.py
  4. 4
      tests/test_lednamebadge_select_method.py

@ -429,7 +429,7 @@ Run `python run_tests.py` from the `tests` directory.
## Related References (for USB-Serial devices)
* https://github.com/Caerbannog/led-mini-board
* http://zunkworks.com/projects/programmablelednamebadges/
* http://zunkworks.com/projects/programmablelednamebadges/ (Offline since 2019. As of 07-2024, it is still available on https://web.archive.org)
* https://github.com/DirkReiners/LEDBadgeProgrammer
* https://bitbucket.org/bartj/led/src
* http://www.daveakerman.com/?p=1440

@ -1,10 +1,10 @@
import sys
from array import array
import abstract_witre_method_test
import abstract_write_method_test
class Test(abstract_witre_method_test.AbstractWriteMethodTest):
class Test(abstract_write_method_test.AbstractWriteMethodTest):
def test_get_methods(self):
methods, output = self.call_info_methods()
self.assertDictEqual({

@ -1,9 +1,9 @@
from unittest.mock import patch
import abstract_witre_method_test
import abstract_write_method_test
class Test(abstract_witre_method_test.AbstractWriteMethodTest):
class Test(abstract_write_method_test.AbstractWriteMethodTest):
@patch('sys.platform', new='linux')
def test_list(self):
method, output = self.call_find(True, True, True, 'list', 'auto')

Loading…
Cancel
Save