Skip to content

Commit

Permalink
Merge branch 'main' into fixc
Browse files Browse the repository at this point in the history
  • Loading branch information
dplore authored Dec 14, 2024
2 parents 10fa2cd + dd4aecb commit 3ea91ad
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1645,8 +1645,10 @@ func testJuniperSchedulerPoliciesConfig(t *testing.T) {
if got, want := gnmi.Get(t, dut, scheduler.Sequence().State()), tc.sequence; got != want {
t.Errorf("scheduler.Sequence().State(): got %v, want %v", got, want)
}
if got, want := gnmi.Get(t, dut, scheduler.Priority().State()), tc.priority; got != want {
t.Errorf("scheduler.Priority().State(): got %v, want %v", got, want)
if tc.priority == oc.Scheduler_Priority_STRICT {
if got, want := gnmi.Get(t, dut, scheduler.Priority().State()), tc.priority; got != want {
t.Errorf("scheduler.Priority().State(): got %v, want %v", got, want)
}
}
}

Expand Down

0 comments on commit 3ea91ad

Please sign in to comment.