Skip to content

Commit

Permalink
ENH: capitalise C in cedrus
Browse files Browse the repository at this point in the history
  • Loading branch information
suelynnmah committed May 1, 2024
1 parent 8d8b3c9 commit d6e0f89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion psychopy_cedrus/components/cedrusBox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
__author__ = 'Jon Peirce'


class cedrusButtonBoxComponent(KeyboardComponent):
class CedrusButtonBoxComponent(KeyboardComponent):
"""An event class for checking an Cedrus RBxxx button boxes
using XID library
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ where = ["",]
"*" = ["*.png",]

[project.entry-points."psychopy.experiment.components"]
cedrusButtonBoxComponent = "psychopy_cedrus.components.cedrusBox:cedrusButtonBoxComponent"
CedrusButtonBoxComponent = "psychopy_cedrus.components.cedrusBox:cedrusButtonBoxComponent"
RipondaButtonBoxBackend = "psychopy_cedrus.components.riponda:RipondaButtonBoxBackend"

[project.entry-points."psychopy.hardware.cedrus"]
Expand Down
4 changes: 2 additions & 2 deletions tests/test_builder/test_ExampleComponent.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from psychopy_cedrus.components.cedrusBox import cedrusButtonBoxComponent
from psychopy.tests.test_experiment.test_components.test_base_components import BaseComponentTests

class TestcedrusButtonBoxComponent(BaseComponentTests):
comp = cedrusButtonBoxComponent
class TestCedrusButtonBoxComponent(BaseComponentTests):
comp = CedrusButtonBoxComponent

0 comments on commit d6e0f89

Please sign in to comment.