Update plankapy_tests.py

This commit is contained in:
hwelch-fle 2023-03-25 10:45:59 -04:00 committed by GitHub
parent eee5593bf4
commit d537f0704e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,9 +2,9 @@
from plankapy import Planka
from controllers import Project, Board, Card, List, Stopwatch, Label, Task, CommentAction, Attachment, User, CardMembership, BoardMembership, CardLabel, ProjectManager, Background
API_URL = "http://planka.corp.finelines-engineering.com"
API_USER = "hwelch"
API_PASS = "Fiber4u!"
API_URL = "http://localhost:3000"
API_USER = "demo@demo.demo"
API_PASS = "demo"
planka = Planka(API_URL, API_USER, API_PASS)