diff --git a/macos/AgentCLI/Package.resolved b/macos/AgentCLI/Package.resolved index 37cd5dc98..887956383 100644 --- a/macos/AgentCLI/Package.resolved +++ b/macos/AgentCLI/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/sindresorhus/KeyboardShortcuts", "state" : { - "revision" : "70caa8dea43e2d273cd5ab78885d7eff01df550c", - "version" : "1.10.0" + "revision" : "ac12762853126cf2e7ad63a6a58e1c9f58c6a0ee", + "version" : "1.17.0" } } ], diff --git a/macos/AgentCLI/Package.swift b/macos/AgentCLI/Package.swift index ff63fd22a..81e18da77 100644 --- a/macos/AgentCLI/Package.swift +++ b/macos/AgentCLI/Package.swift @@ -11,7 +11,7 @@ let package = Package( .executable(name: "AgentCLI", targets: ["AgentCLI"]), ], dependencies: [ - .package(url: "https://github.com/sindresorhus/KeyboardShortcuts", exact: "1.10.0"), + .package(url: "https://github.com/sindresorhus/KeyboardShortcuts", exact: "1.17.0"), ], targets: [ .executableTarget( diff --git a/tests/test_macos_app.py b/tests/test_macos_app.py index 19d30756c..ae67e0ced 100644 --- a/tests/test_macos_app.py +++ b/tests/test_macos_app.py @@ -805,8 +805,11 @@ def test_macos_build_script_creates_drag_install_dmg() -> None: assert "-format UDRW" in script assert "hdiutil attach" in script assert "-mountpoint" not in script - assert 'volume_path=$(printf' in script - assert 'set background picture of theViewOptions to file ".background:dmg-background.png"' in script + assert "volume_path=$(printf" in script + assert ( + 'set background picture of theViewOptions to file ".background:dmg-background.png"' + in script + ) assert 'set position of item "AgentCLI.app" of container window to {150, 180}' in script assert 'set position of item "Applications" of container window to {450, 180}' in script assert 'if ! set_dmg_finder_layout "$volume_path"; then' in script