Skip to content

Commit ee99ad9

Browse files
Format dictionary runtime updates
1 parent 6c39a81 commit ee99ad9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/JavaScriptKit/BridgeJSIntrinsics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2336,7 +2336,7 @@ extension Array: _BridgedSwiftStackType where Element: _BridgedSwiftStackType, E
23362336

23372337
public protocol _BridgedSwiftDictionaryStackType: _BridgedSwiftTypeLoweredIntoVoidType {
23382338
associatedtype DictionaryValue: _BridgedSwiftStackType
2339-
where DictionaryValue.StackLiftResult == DictionaryValue
2339+
where DictionaryValue.StackLiftResult == DictionaryValue
23402340
}
23412341

23422342
extension Dictionary: _BridgedSwiftStackType

Tests/BridgeJSRuntimeTests/DictionaryTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final class DictionaryTests: XCTestCase {
2323
func testRoundTripDictionaryJSObject() throws {
2424
let global = JSObject.global
2525
let input: [String: JSObject] = [
26-
"global": global,
26+
"global": global
2727
]
2828
let result = try jsRoundTripDictionaryJSObject(input)
2929
XCTAssertEqual(result, input)

0 commit comments

Comments
 (0)