Update Coding standards authored by fima's avatar fima
...@@ -66,7 +66,7 @@ A `test_examples.py` should contain the test for it: ...@@ -66,7 +66,7 @@ A `test_examples.py` should contain the test for it:
```python ```python
def test_say_hello(): def test_say_hello():
expected_output = "Hello Alice!" expected_output = "Hello Alice!"
result = qimex.examples.say_hello("Alice") result = myproject.examples.say_hello("Alice")
assert result == expected_output assert result == expected_output
``` ```
... ...
......