Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jinja2 committed Dec 16, 2024
1 parent 9edca68 commit 5ead747
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions receiver/k8sclusterreceiver/internal/node/nodes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,8 @@ func TestNodeMetadata(t *testing.T) {
},
Status: corev1.NodeStatus{
Conditions: []corev1.NodeCondition{
{Type: "FrequentUnregisterNetDevice",
{
Type: "FrequentUnregisterNetDevice",
Status: "False",
LastHeartbeatTime: metav1.Time{
Time: time.Now(),
Expand All @@ -288,7 +289,8 @@ func TestNodeMetadata(t *testing.T) {
Message: "node is functioning properly",
Reason: "NoFrequentUnregisterNetDevice",
},
{Type: "MemoryPressure",
{
Type: "MemoryPressure",
Status: "False",
LastHeartbeatTime: metav1.Time{
Time: time.Now(),
Expand Down

0 comments on commit 5ead747

Please sign in to comment.