From 7c25d6bd92b24676cdca40c537c46e5416cd33c9 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 15:12:52 +0000 Subject: [PATCH] style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf This commit fixes the style issues introduced in d9244a7 according to the output from Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf. Details: None --- test/PiNexusIdentityManager.test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/PiNexusIdentityManager.test.js b/test/PiNexusIdentityManager.test.js index 20096ffc1..15f0d93a0 100644 --- a/test/PiNexusIdentityManager.test.js +++ b/test/PiNexusIdentityManager.test.js @@ -1,14 +1,14 @@ -const { expect } = require('chai'); -const { deployContract } = require('@truffle/hdwallet-provider'); +const { expect } = require("chai"); +const { deployContract } = require("@truffle/hdwallet-provider"); -describe('PiNexusIdentityManager', () => { +describe("PiNexusIdentityManager", () => { let contract; beforeEach(async () => { - contract = await deployContract('PiNexusIdentityManager'); + contract = await deployContract("PiNexusIdentityManager"); }); - it('should have a valid owner', async () => { + it("should have a valid owner", async () => { const owner = await contract.owner(); expect(owner).to.not.be.null; });