diff --git a/README.md b/README.md index 0b8e318..cd84a1f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SQLBoiler -[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/vattle/sqlboiler/blob/master/LICENSE.md) +[![License](https://img.shields.io/badge/license-BSD-blue.svg)](https://github.com/vattle/sqlboiler/blob/master/LICENSE) [![GoDoc](https://godoc.org/github.com/pobri19/sqlboiler?status.svg)](https://godoc.org/github.com/pobri19/sqlboiler) [![CircleCI](https://circleci.com/gh/vattle/sqlboiler.svg?style=shield)](https://circleci.com/gh/vattle/sqlboiler) [![Go Report Card](https://goreportcard.com/badge/kubernetes/helm)](http://goreportcard.com/report/vattle/sqlboiler) diff --git a/templates_test/relationship_to_many.tpl b/templates_test/relationship_to_many.tpl index f599cc9..138f703 100644 --- a/templates_test/relationship_to_many.tpl +++ b/templates_test/relationship_to_many.tpl @@ -8,8 +8,6 @@ {{- else -}} {{- $rel := textsFromRelationship $dot.Tables $table . -}} func test{{$rel.LocalTable.NameGo}}ToMany{{$rel.Function.Name}}(t *testing.T) { - t.Parallel() - var err error tx := MustTx(boil.Begin()) defer tx.Rollback() diff --git a/templates_test/relationship_to_one.tpl b/templates_test/relationship_to_one.tpl index 66f62df..ab4c5f2 100644 --- a/templates_test/relationship_to_one.tpl +++ b/templates_test/relationship_to_one.tpl @@ -1,7 +1,5 @@ {{- define "relationship_to_one_test_helper"}} func test{{.LocalTable.NameGo}}ToOne{{.ForeignTable.NameGo}}_{{.Function.Name}}(t *testing.T) { - t.Parallel() - tx := MustTx(boil.Begin()) defer tx.Rollback()