summary refs log tree commit diff
path: root/lib/tests/misc.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2018-06-05 18:43:42 +0200
committerProfpatsch <mail@profpatsch.de>2018-06-05 18:45:20 +0200
commitf98272d6e293a9deae83a9274f1061f0121e84c9 (patch)
treedf5839195566477e37c6145fd4800a741e466b35 /lib/tests/misc.nix
parent6842319f8148cfb9d1644ebc0465169d75d91317 (diff)
downloadnixpkgs-f98272d6e293a9deae83a9274f1061f0121e84c9.tar
nixpkgs-f98272d6e293a9deae83a9274f1061f0121e84c9.tar.gz
nixpkgs-f98272d6e293a9deae83a9274f1061f0121e84c9.tar.bz2
nixpkgs-f98272d6e293a9deae83a9274f1061f0121e84c9.tar.lz
nixpkgs-f98272d6e293a9deae83a9274f1061f0121e84c9.tar.xz
nixpkgs-f98272d6e293a9deae83a9274f1061f0121e84c9.tar.zst
nixpkgs-f98272d6e293a9deae83a9274f1061f0121e84c9.zip
Revert "lib: bitAnd, bitOr, bitXor"
Diffstat (limited to 'lib/tests/misc.nix')
-rw-r--r--lib/tests/misc.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix
index eab20d0f14d..c683df7d7ca 100644
--- a/lib/tests/misc.nix
+++ b/lib/tests/misc.nix
@@ -45,21 +45,6 @@ runTests {
     expected = true;
   };
 
-  testBitAnd = {
-    expr = (bitAnd 3 10);
-    expected = 2;
-  };
-
-  testBitOr = {
-    expr = (bitOr 3 10);
-    expected = 11;
-  };
-
-  testBitXor = {
-    expr = (bitXor 3 10);
-    expected = 9;
-  };
-
 # STRINGS
 
   testConcatMapStrings = {