Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Dec 27, 2024
1 parent c9a5e9b commit 46ab45e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/unit/v2/server/testMiddleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ describe('Test middleware', () => {
);
const count = duration.filter(metric => metric.metricName === `${durationMetric}_count`);
assert.deepStrictEqual(count, [{
"exemplar": [undefined]
labels: {
action: 'listMetrics',
code: 200,
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/v2/utils/testDisk.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ describe('test parseDiskSizeSpec', () => {

describe('test formatDiskSize', () => {
it('should format bytes as a human readable string', () => {
assert.strictEqual(formatDiskSize(1024), '1.0KiB');
assert.strictEqual(formatDiskSize(1024), '1KiB');
});
});

0 comments on commit 46ab45e

Please sign in to comment.