Skip to content

Commit 7bbb2ac

Browse files
fixes #5
1 parent c3e9f6a commit 7bbb2ac

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.0.8] - 2021-05-??
9+
- Fixes issue (wrong arrangement in test) #5
10+
811
## [0.0.7] - 2021-01-31 :grapes:
912
- Corrects a bug in the `Policy` class (#2)
1013
- Changes the type annotation of `Identity` claims (#3)

tests/test_authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_identity_dictionary_notation():
5555

5656

5757
def test_user_identity_dictionary_notation():
58-
a = Identity({"oid": "bc5f60df-4c27-49c1-8466-acf32618a6d2"})
58+
a = User({"oid": "bc5f60df-4c27-49c1-8466-acf32618a6d2"})
5959

6060
assert a["oid"] == "bc5f60df-4c27-49c1-8466-acf32618a6d2"
6161
assert a["foo"] is None

0 commit comments

Comments
 (0)