diff --git a/LICENSE b/LICENSE index 8cab79b..cbb67ec 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2022 Ayaan Hossain +Copyright (c) 2019-2024 Ayaan Hossain Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/test_ShareDB.py b/tests/test_ShareDB.py index 49bc46a..a6aa5ff 100755 --- a/tests/test_ShareDB.py +++ b/tests/test_ShareDB.py @@ -535,8 +535,8 @@ def test_random_multipopitem(total): assert len(myDB) == max(0, prev_len - num_items) # multiremove that raises Exception - with pytest.raises(Exception) as error: - myDB.multiremove([None]*factor) + with pytest.raises(Exception) as _: + myDB.multiremove([None]*total) clean_myDB_resources(myDB)