Skip to content

Commit

Permalink
[#977] Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
fivitti committed Feb 7, 2024
1 parent a80d681 commit 7586553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/appcfg/kea/option_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func (option testDHCPOption) GetUniverse() storkutil.IPType {
// Test that a DHCP option in the Kea format is created from the Stork's
// option representation. It creates an option with many different option
// fields and simulates the case that a definition for this option exists.
func TestCreateSingleOptionDataMultiplFields(t *testing.T) {
func TestCreateSingleOptionDataMultipleFields(t *testing.T) {
option := &testDHCPOption{
alwaysSend: true,
code: 1600,
Expand Down
2 changes: 1 addition & 1 deletion backend/server/apps/kea/configmodule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2245,7 +2245,7 @@ func TestCommitSubnetUpdate(t *testing.T) {
require.Len(t, agents.RecordedURLs, 4)
require.Len(t, agents.RecordedCommands, 4)

// The resective commands should be sent to different servers.
// The respective commands should be sent to different servers.
require.NotEqual(t, agents.RecordedURLs[0], agents.RecordedURLs[1])
require.NotEqual(t, agents.RecordedURLs[2], agents.RecordedURLs[3])
require.Equal(t, agents.RecordedURLs[0], agents.RecordedURLs[2])
Expand Down

0 comments on commit 7586553

Please sign in to comment.