Skip to content

Commit

Permalink
chore: fix windows assertion path
Browse files Browse the repository at this point in the history
  • Loading branch information
WillieRuemmele committed Apr 3, 2024
1 parent 0f71116 commit 88ab441
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/utils/deployResultFormatter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import * as path from 'node:path';
import { join } from 'node:path';
import { assert, expect, config } from 'chai';
import sinon from 'sinon';
import { DeployMessage, DeployResult, FileResponse } from '@salesforce/source-deploy-retrieve';
Expand Down Expand Up @@ -47,7 +48,7 @@ describe('deployResultFormatter', () => {
expect(tableStub.callCount).to.equal(1);
expect(tableStub.firstCall.args[0]).to.deep.equal([
{
filePath: 'classes/ProductController.cls',
filePath: join('classes', 'ProductController.cls'),
fullName: 'ProductController',
state: 'Changed',
type: 'ApexClass',
Expand Down

0 comments on commit 88ab441

Please sign in to comment.