From b0a2ac75749624bc3246d5fd4205089973c09cc4 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Wed, 2 Oct 2024 22:36:54 +0200 Subject: [PATCH] Fix port in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2ec1569..77ffa49 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Here's a basic example of how to use NuCon: from nucon import Nucon, BreakerStatus # Set the base URL for the game's API (if different from default) -Nucon.set_base_url("http://localhost:8080/") +Nucon.set_base_url("http://localhost:8785/") # Enable dummy mode for testing (optional) Nucon.set_dummy_mode(True) @@ -134,7 +134,7 @@ NuCon includes a test suite to verify its functionality and compatibility with t To run the tests: -1. Ensure the Nucleares game is running and accessible at http://localhost:8080/ (or update the URL in the test setup). +1. Ensure the Nucleares game is running and accessible at http://localhost:8785/ (or update the URL in the test setup). 2. Install pytest: `pip install pytest` 3. Run the tests: `pytest test/test.py`