Skip to content

Commit

Permalink
style: format code with Autopep8, Black, ClangFormat, dotnet-format, …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
deepsource-autofix[bot] authored Jul 20, 2024
1 parent d9244a7 commit 7c25d6b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/PiNexusIdentityManager.test.js
Original file line number Diff line number Diff line change
@@ -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;
});
Expand Down

0 comments on commit 7c25d6b

Please sign in to comment.