Skip to content

Commit d10f138

Browse files
comment updated
1 parent 7e2fdb6 commit d10f138

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ If you've noticed a bug or have a feature request, [make one](https://github.com
2020

2121
If this is something you think you can fix, then [fork PICA](https://github.com/prathameshnium/PICA-Python-Instrument-Control-and-Automation/fork) and create a branch with a descriptive name.
2222

23-
A good branch name would be (where issue #325 is the ticket you're working on):
23+
A good branch name would be (where issue #101 is the ticket you're working on):
2424

2525
```sh
26-
git checkout -b 325-add-ac-resistivity-module
26+
git checkout -b 101-add-new-instrument
2727
```
2828

2929
### Get the test suite running

tests/test_pica_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def mock_app_dependencies():
2828
with patch('PIL.Image.open', MagicMock()), \
2929
patch('PIL.ImageTk.PhotoImage', MagicMock()), \
3030
patch('subprocess.Popen', MagicMock()), \
31-
patch('tkinter.font.Font', MagicMock()): # <--- FIX: Mock Font creation
31+
patch('tkinter.font.Font', MagicMock()): # Mocking Font to prevent segfaults in headless environments.
3232
yield
3333

3434
def test_pica_launcher_initialization(mock_app_dependencies):

0 commit comments

Comments
 (0)