Skip to content

Commit

Permalink
Adjust failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
vansante committed Jan 8, 2025
1 parent 2e70ef0 commit ce9b16d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ func TestDatasetGetProperty(t *testing.T) {
require.NoError(t, err)
require.Equal(t, "off", prop)

prop, err = ds.GetProperty(context.Background(), PropertyCompression)
prop, err = ds.GetProperty(context.Background(), PropertyMounted)
require.NoError(t, err)
require.Equal(t, "off", prop)
require.Equal(t, ValueYes, prop)
})
}

Expand Down

0 comments on commit ce9b16d

Please sign in to comment.