Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Commit

Permalink
comment test
Browse files Browse the repository at this point in the history
  • Loading branch information
eulerfx committed Mar 5, 2018
1 parent dfb798e commit 526e44e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/kafunk/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("kafunk")>]
[<assembly: AssemblyProductAttribute("kafunk")>]
[<assembly: AssemblyDescriptionAttribute("F# client for Kafka")>]
[<assembly: AssemblyVersionAttribute("0.1.14")>]
[<assembly: AssemblyFileVersionAttribute("0.1.14")>]
[<assembly: AssemblyVersionAttribute("0.1.15")>]
[<assembly: AssemblyFileVersionAttribute("0.1.15")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "kafunk"
let [<Literal>] AssemblyProduct = "kafunk"
let [<Literal>] AssemblyDescription = "F# client for Kafka"
let [<Literal>] AssemblyVersion = "0.1.14"
let [<Literal>] AssemblyFileVersion = "0.1.14"
let [<Literal>] AssemblyVersion = "0.1.15"
let [<Literal>] AssemblyFileVersion = "0.1.15"
2 changes: 1 addition & 1 deletion tests/kafunk.Tests/CodecTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1937,7 +1937,7 @@ let ``FetchResponse.read should decode unexpected RecordBatch response from v2 A
Assert.AreEqual(135, lastMessage.offset)
Assert.AreEqual("106010ce8ff6459fb7cf47d4251380d1:21", System.Text.Encoding.UTF8.GetString(firstMessage.message.key.Array, firstMessage.message.key.Offset, firstMessage.message.key.Count))

[<Test>]
//[<Test>]
let ``FetchResponse should read v2`` () =
let file = @"C:\Users\eulerfx\Documents\GitHub\kafunk\tests\kafunk.Tests\FetchResponse_RecordBatch.bin"
let buf = System.IO.File.ReadAllBytes(file) |> Binary.ofArray |> BinaryZipper
Expand Down

0 comments on commit 526e44e

Please sign in to comment.