Skip to content

Commit

Permalink
fixed project namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
isidore committed Nov 11, 2023
1 parent 1b8e255 commit cf8addb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
VERSION = 1

setup(
name="approvaltests.startup",
name="project",
version=VERSION,
description="Assertion/verification library to aid testing",
author="ApprovalTests Contributors",
author_email="",
url="https://github.com/approvals/ApprovalTests.Python.starterproject",
python_requires=">=3.6.1",
python_requires=">=3.7.1",
packages=find_packages(exclude=["tests*"]),
package_data={"approvaltests": ["reporters/reporters.json"]},
install_requires=["pyperclip==1.5.27", "pytest"],
Expand Down
4 changes: 2 additions & 2 deletions tests/test_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from approvaltests.storyboard import Storyboard

from game_of_life import GameOfLife
from project.game_of_life import GameOfLife

# If this fails, run:
# brew install python-tk
Expand All @@ -14,7 +14,7 @@ def is_running_on_github_actions():
def test_tkinter_gui():
if is_running_on_github_actions():
return
from TkinterGui import TkinterGui
from project.TkinterGui import TkinterGui
game = GameOfLife()
create_square_at(game, 8, 8)
create_glider_at(game, 0, 0)
Expand Down

0 comments on commit cf8addb

Please sign in to comment.