mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
test: remove checks for messages of throws
Platform specific messages for throws is different, so checking that test throws proper type should be enough
This commit is contained in:
parent
8791527ad9
commit
7f0cd86e72
35 changed files with 171 additions and 1331 deletions
|
@ -141,7 +141,6 @@ class Config with IterableMixin<ConfigEntry> {
|
|||
/// highest level (usually the local one).
|
||||
///
|
||||
/// The [regexp] is applied case-sensitively on the value.
|
||||
/// Empty [regexp] sets [value] for all values of a multivar [variable].
|
||||
void setMultivar({
|
||||
required String variable,
|
||||
required String regexp,
|
||||
|
@ -159,7 +158,6 @@ class Config with IterableMixin<ConfigEntry> {
|
|||
/// file with the highest level (usually the local one).
|
||||
///
|
||||
/// The [regexp] is applied case-sensitively on the value.
|
||||
/// Empty [regexp] deletes all values of a multivar [variable].
|
||||
void deleteMultivar({required String variable, required String regexp}) {
|
||||
bindings.deleteMultivar(
|
||||
configPointer: _configPointer,
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// coverage:ignore-file
|
||||
|
||||
import 'dart:ffi';
|
||||
import 'package:ffi/ffi.dart';
|
||||
import 'package:libgit2dart/src/bindings/libgit2_bindings.dart';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue