Skip to content

Commit

Permalink
fix(python): bucket test is broken on latest wing version (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
eladcon authored Jun 6, 2024
1 parent d094d06 commit 2af27ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/bucket.test.w
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ bucket.onCreate(new python.InflightBucketEvent(
new std.Test(inflight () => {
bucket.put("key1", "value1");
util.waitUntil(inflight () => {
return bucket.get("key1") == "onCreate";
return bucket.get("key1").lowercase() == "oncreate";
});
}, timeout: 3m) as "invokes bucket on create";
4 changes: 2 additions & 2 deletions python/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@winglibs/python",
"description": "python library for Wing",
"version": "0.0.6",
"version": "0.0.7",
"repository": {
"type": "git",
"url": "https://github.com/winglang/winglibs.git",
Expand Down

0 comments on commit 2af27ad

Please sign in to comment.