chore: update my branch #1

Merged
Future merged 18 commits from update/alterware into alterware 2025-06-02 09:29:44 +00:00
10 changed files with 104 additions and 53 deletions
Showing only changes of commit 9ea320eb9c - Show all commits

View File

@ -48,4 +48,4 @@ def test_api_user_feed():
jData = resp.get_json()
assert resp.status_code==200
assert jData["screen_name"]=="jack"
assert len(jData["latestTweets"])>0
assert len(jData["latest_tweets"])>0

View File

@ -299,7 +299,7 @@ def getUserData(twitter_url,includeFeed=False):
apiFeed = []
for tweet in feed:
apiFeed.append(getApiResponse(tweet))
userData['latestTweets'] = apiFeed
userData['latest_tweets'] = apiFeed
return userData