Skip to content

Commit

Permalink
Remove unnecessary async/await from test
Browse files Browse the repository at this point in the history
  • Loading branch information
MajorLift committed Sep 12, 2024
1 parent 73ec11f commit ddbacce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/core/Engine.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ describe('Engine', () => {
});
});

it("updates datamodel state when a controller's state is updated", async () => {
it("updates datamodel state when a controller's state is updated", () => {
const engine = Engine.init({});

expect(
await engine.controllerMessenger.call('LoggingController:add', {
engine.controllerMessenger.call('LoggingController:add', {
type: LogType.GenericLog,
data: `Generic log`,
}),
Expand Down
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1302,6 +1302,6 @@ SPEC CHECKSUMS:
Yoga: 6f5ab94cd8b1ecd04b6e973d0bc583ede2a598cc
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a

PODFILE CHECKSUM: e4050300fc9c8d091b9c00e1486ad6e205c250c7
PODFILE CHECKSUM: 3514934ac1830af4ca844ba018f38720a48d006b

COCOAPODS: 1.15.2

0 comments on commit ddbacce

Please sign in to comment.