We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In chapter 3 "Write a Log Package", errors are thrown when running a test for index.
As of page 38, the directory structure of internal/log looks like:
internal/log
internal/log ├── config.go ├── index.go ├── index_test.go ├── store.go └── store_test.go
Running go test ./internal/log/... throws many errors
go test ./internal/log/...
The text was updated successfully, but these errors were encountered:
Yes, so I am running into this issue when running the test:
$ go test ./internal/log -v === RUN TestIndex index_test.go:47: Error Trace: C:/Projects/proglog/internal/log/index_test.go:47 Error: Not equal: expected: 0x1 actual : 0x0 Test: TestIndex --- FAIL: TestIndex (0.01s)
Sorry, something went wrong.
No branches or pull requests
In chapter 3 "Write a Log Package", errors are thrown when running a test for index.
As of page 38, the directory structure of
internal/log
looks like:Running
go test ./internal/log/...
throws many errorsThe text was updated successfully, but these errors were encountered: