Skip to content

Commit

Permalink
test(lib): fix 'cpu/utilization' to be number
Browse files Browse the repository at this point in the history
  • Loading branch information
manushak committed Apr 22, 2024
1 parent 7209981 commit 1e1899d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/unit/lib/azure-importer/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('lib/azure-importer: ', () => {
'azure-subscription-id': '9de7e19f-8a18-4e73-9451-45fc74e7d0d3',
'azure-resource-group': 'vm1_group',
'azure-vm-name': 'vm1',
'cpu/utilization': '3.14',
'cpu/utilization': 3.14,
'memory/available/GB': 0.5,
'memory/used/GB': 0.5,
'memory/capacity/GB': 1,
Expand Down Expand Up @@ -144,7 +144,7 @@ describe('lib/azure-importer: ', () => {
'azure-subscription-id': '9de7e19f-8a18-4e73-9451-45fc74e7d0d3',
'azure-resource-group': 'vm1_group',
'azure-vm-name': 'vm1',
'cpu/utilization': '3.14',
'cpu/utilization': 3.14,
'memory/available/GB': 0.5,
'memory/used/GB': 0.5,
'memory/capacity/GB': 1,
Expand Down

0 comments on commit 1e1899d

Please sign in to comment.