diff options
| author | Shulhan <ms@kilabit.info> | 2024-09-08 14:01:33 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-09-08 14:01:33 +0700 |
| commit | 9cdbccc13eb68e6d2c0067a009416f0e766dccc8 (patch) | |
| tree | 09ceb2f6ce72af9fb9581e11628e620298064436 /word_test.go | |
| parent | 4905270d02431c5a431fe33491893803c373be5c (diff) | |
| download | kbbi-9cdbccc13eb68e6d2c0067a009416f0e766dccc8.tar.xz | |
all: realign some struct for compact layout
Changes,
* struct Client realigned from 56 to 40 bytes (-16)
* struct Word realigned from 72 to 56 bytes (-16)
* anonymous struct in test realigned from 40 to 32 bytes (-8)
Diffstat (limited to 'word_test.go')
| -rw-r--r-- | word_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/word_test.go b/word_test.go index 7e0a69b..b7a3f82 100644 --- a/word_test.go +++ b/word_test.go @@ -12,9 +12,9 @@ import ( func TestWord_parseHTMLEntri(t *testing.T) { cases := []struct { + exp *Word infile string cari string - exp *Word }{{ infile: "testdata/entri.html", cari: "informasi", |
